Skip to content

Commit

Permalink
fix: use data instead of row
Browse files Browse the repository at this point in the history
  • Loading branch information
SaarChaffee committed Mar 27, 2024
1 parent e761966 commit 87f290b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion de-DE/guide/database/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()` 方法。
Expand Down
2 changes: 1 addition & 1 deletion en-US/guide/database/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()` 方法。
Expand Down
2 changes: 1 addition & 1 deletion fr-FR/guide/database/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()` 方法。
Expand Down
2 changes: 1 addition & 1 deletion ja-JP/guide/database/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()` 方法。
Expand Down
2 changes: 1 addition & 1 deletion ru-RU/guide/database/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()` 方法。
Expand Down
2 changes: 1 addition & 1 deletion zh-CN/guide/database/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()` 方法。
Expand Down
2 changes: 1 addition & 1 deletion zh-TW/guide/database/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()` 方法。
Expand Down

0 comments on commit 87f290b

Please sign in to comment.