當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript rethinkdb.tableCreate函數代碼示例

本文整理匯總了TypeScript中rethinkdb.tableCreate函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript tableCreate函數的具體用法?TypeScript tableCreate怎麽用?TypeScript tableCreate使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了tableCreate函數的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: function

(async function() {
  var conn = await r.connect(config.database);

  try {
    await r.dbCreate(config.database.db).run(conn);
    await r.tableCreate("messages").run(conn);
    await r.table("messages").indexCreate("time").run(conn);
  }
  catch (err) {
    if (err.message.indexOf("already exists") < 0)
      console.log(err.message);
  }

  (await r.table("messages").changes().run(conn)).each((err, item) => {
    if (item && item.new_val)
      io.sockets.emit("message", item.new_val);
  });
})();
開發者ID:itainteasy,項目名稱:angular2-typescript-example,代碼行數:18,代碼來源:app.ts

示例2:

 .finally(() => {
     return r.tableCreate("users").run(conn);
 }).finally(() => {
開發者ID:triniwiz,項目名稱:mojichat-api,代碼行數:3,代碼來源:app.ts

示例3: function

 function (tableExists) {
     return r.branch(tableExists, { created: 0 }, r.tableCreate('users', { primaryKey: 'global_client_id' }));
 }
開發者ID:hhoechtl,項目名稱:bar-sounds-hackathon,代碼行數:3,代碼來源:app.ts


注:本文中的rethinkdb.tableCreate函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。