diff options
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -48,7 +48,7 @@ var db: sqlite.Db = undefined; | |||
| 48 | try db.init(allocator, .{ .mode = sqlite.Db.Mode{ .File = "/home/vincent/mydata.db" } }); | 48 | try db.init(allocator, .{ .mode = sqlite.Db.Mode{ .File = "/home/vincent/mydata.db" } }); |
| 49 | ``` | 49 | ``` |
| 50 | 50 | ||
| 51 | The `init` method takes an allocator and an optional tuple which will used to configure sqlite. | 51 | The `init` method takes an allocator and an optional tuple which will be used to configure sqlite. |
| 52 | 52 | ||
| 53 | Right now the only member used in that tuple is `mode` which defines if the sqlite database is in memory or uses a file. | 53 | Right now the only member used in that tuple is `mode` which defines if the sqlite database is in memory or uses a file. |
| 54 | 54 | ||