mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
committed by
Andreas Rumpf
parent
441cacf70f
commit
8d1a7db6ea
@@ -441,8 +441,12 @@ proc getValue*(db: DbConn, query: SqlQuery,
|
||||
## executes the query and returns the first column of the first row of the
|
||||
## result dataset. Returns "" if the dataset contains no rows or the database
|
||||
## value is NULL.
|
||||
var x = pqgetvalue(setupQuery(db, query, args), 0, 0)
|
||||
result = if isNil(x): "" else: $x
|
||||
var res = setupQuery(db, query, args)
|
||||
if pqntuples(res) > 0:
|
||||
var x = pqgetvalue(res, 0, 0)
|
||||
result = if isNil(x): "" else: $x
|
||||
else:
|
||||
result = ""
|
||||
|
||||
proc getValue*(db: DbConn, stmtName: SqlPrepared,
|
||||
args: varargs[string, `$`]): string {.
|
||||
@@ -450,8 +454,12 @@ proc getValue*(db: DbConn, stmtName: SqlPrepared,
|
||||
## executes the query and returns the first column of the first row of the
|
||||
## result dataset. Returns "" if the dataset contains no rows or the database
|
||||
## value is NULL.
|
||||
var x = pqgetvalue(setupQuery(db, stmtName, args), 0, 0)
|
||||
result = if isNil(x): "" else: $x
|
||||
var res = setupQuery(db, stmtName, args)
|
||||
if pqntuples(res) > 0:
|
||||
var x = pqgetvalue(res, 0, 0)
|
||||
result = if isNil(x): "" else: $x
|
||||
else:
|
||||
result = ""
|
||||
|
||||
proc tryInsertID*(db: DbConn, query: SqlQuery,
|
||||
args: varargs[string, `$`]): int64 {.
|
||||
|
||||
Reference in New Issue
Block a user