From f503ef5fd967bac9a86a97024ab8c300a6b310c4 Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Mon, 4 Jun 2018 16:16:50 +0200 Subject: [PATCH] fixed merge conflict --- src/db_sqlite.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/db_sqlite.nim b/src/db_sqlite.nim index b1541c1ba1..fd25b2b941 100644 --- a/src/db_sqlite.nim +++ b/src/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 @@ -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 (