mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-22 08:51:21 +00:00
fixed merge conflict
This commit is contained in:
@@ -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
|
||||
@@ -57,7 +57,7 @@
|
||||
##
|
||||
## import db_sqlite, math
|
||||
##
|
||||
## let theDb = open("mytest.db", nil, nil, nil)
|
||||
## let theDb = open("mytest.db", "", "", "")
|
||||
##
|
||||
## theDb.exec(sql"Drop table if exists myTestTbl")
|
||||
## theDb.exec(sql("""create table myTestTbl (
|
||||
|
||||
Reference in New Issue
Block a user