diff --git a/de-DE/guide/database/index.md b/de-DE/guide/database/index.md index 0dbfd15fa30c..cfc97ee14e3f 100644 --- a/de-DE/guide/database/index.md +++ b/de-DE/guide/database/index.md @@ -64,7 +64,7 @@ await ctx.database.get('schedule', { ```ts // 向 schedule 表中添加一行数据,data 是要添加的数据行 // 返回值是添加的行的完整数据 (包括自动填充的 id 和默认属性等) -await ctx.database.create('schedule', row) +await ctx.database.create('schedule', data) ``` 如果你想要批量插入数据,可以使用下面介绍的 `database.upsert()` 方法。 diff --git a/en-US/guide/database/index.md b/en-US/guide/database/index.md index f60ec659ca91..8955b0861d5c 100644 --- a/en-US/guide/database/index.md +++ b/en-US/guide/database/index.md @@ -64,7 +64,7 @@ await ctx.database.get('schedule', { ```ts // 向 schedule 表中添加一行数据,data 是要添加的数据行 // 返回值是添加的行的完整数据 (包括自动填充的 id 和默认属性等) -await ctx.database.create('schedule', row) +await ctx.database.create('schedule', data) ``` 如果你想要批量插入数据,可以使用下面介绍的 `database.upsert()` 方法。 diff --git a/fr-FR/guide/database/index.md b/fr-FR/guide/database/index.md index c3f5878207f9..14e50a7b2459 100644 --- a/fr-FR/guide/database/index.md +++ b/fr-FR/guide/database/index.md @@ -64,7 +64,7 @@ await ctx.database.get('schedule', { ```ts // 向 schedule 表中添加一行数据,data 是要添加的数据行 // 返回值是添加的行的完整数据 (包括自动填充的 id 和默认属性等) -await ctx.database.create('schedule', row) +await ctx.database.create('schedule', data) ``` 如果你想要批量插入数据,可以使用下面介绍的 `database.upsert()` 方法。 diff --git a/ja-JP/guide/database/index.md b/ja-JP/guide/database/index.md index 6577d64b1c4e..c804f4c751af 100644 --- a/ja-JP/guide/database/index.md +++ b/ja-JP/guide/database/index.md @@ -64,7 +64,7 @@ await ctx.database.get('schedule', { ```ts // 向 schedule 表中添加一行数据,data 是要添加的数据行 // 返回值是添加的行的完整数据 (包括自动填充的 id 和默认属性等) -await ctx.database.create('schedule', row) +await ctx.database.create('schedule', data) ``` 如果你想要批量插入数据,可以使用下面介绍的 `database.upsert()` 方法。 diff --git a/ru-RU/guide/database/index.md b/ru-RU/guide/database/index.md index 0dbfd15fa30c..cfc97ee14e3f 100644 --- a/ru-RU/guide/database/index.md +++ b/ru-RU/guide/database/index.md @@ -64,7 +64,7 @@ await ctx.database.get('schedule', { ```ts // 向 schedule 表中添加一行数据,data 是要添加的数据行 // 返回值是添加的行的完整数据 (包括自动填充的 id 和默认属性等) -await ctx.database.create('schedule', row) +await ctx.database.create('schedule', data) ``` 如果你想要批量插入数据,可以使用下面介绍的 `database.upsert()` 方法。 diff --git a/zh-CN/guide/database/index.md b/zh-CN/guide/database/index.md index 5b430bc53503..71106f5825b2 100644 --- a/zh-CN/guide/database/index.md +++ b/zh-CN/guide/database/index.md @@ -64,7 +64,7 @@ await ctx.database.get('schedule', { ```ts // 向 schedule 表中添加一行数据,data 是要添加的数据行 // 返回值是添加的行的完整数据 (包括自动填充的 id 和默认属性等) -await ctx.database.create('schedule', row) +await ctx.database.create('schedule', data) ``` 如果你想要批量插入数据,可以使用下面介绍的 `database.upsert()` 方法。 diff --git a/zh-TW/guide/database/index.md b/zh-TW/guide/database/index.md index 8a547e6473f2..4721c5b23f0d 100644 --- a/zh-TW/guide/database/index.md +++ b/zh-TW/guide/database/index.md @@ -64,7 +64,7 @@ await ctx.database.get('schedule', { ```ts // 向 schedule 表中添加一行数据,data 是要添加的数据行 // 返回值是添加的行的完整数据 (包括自动填充的 id 和默认属性等) -await ctx.database.create('schedule', row) +await ctx.database.create('schedule', data) ``` 如果你想要批量插入数据,可以使用下面介绍的 `database.upsert()` 方法。