diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2018-06-01 16:28:20 +0100 |
---|---|---|
committer | Varriount <Varriount@users.noreply.github.com> | 2018-06-01 11:28:20 -0400 |
commit | cb87bba82fa81240ea449e13a99280ce134096db (patch) | |
tree | 45798169657699391923409be9d9c6fdd8f44046 /lib | |
parent | 8557a2e1a510d0e195af7b93977bb9866a45b796 (diff) | |
download | Nim-cb87bba82fa81240ea449e13a99280ce134096db.tar.gz |
Update example (#7788)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/impure/db_sqlite.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/impure/db_sqlite.nim b/lib/impure/db_sqlite.nim index b1541c1ba..6b8ca4881 100644 --- a/lib/impure/db_sqlite.nim +++ b/lib/impure/db_sqlite.nim @@ -31,7 +31,7 @@ ## ## .. code-block:: Nim ## import db_sqlite -## let db = open("localhost", "user", "password", "dbname") +## let db = open("mytest.db", nil, nil, nil) # user, password, database name can be nil ## db.close() ## ## Creating a table |