mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
pg: add binding for PQfinish (close) (#6435)
This commit is contained in:
parent
e429a77de2
commit
21c5ff681b
@ -37,6 +37,7 @@ fn C.PQnfields(voidptr) int
|
||||
fn C.PQexec(voidptr) voidptr
|
||||
fn C.PQexecParams(voidptr) voidptr
|
||||
fn C.PQclear(voidptr) voidptr
|
||||
fn C.PQfinish(voidptr)
|
||||
|
||||
pub fn connect(config Config) ?DB {
|
||||
conninfo := 'host=$config.host port=$config.port user=$config.user dbname=$config.dbname password=$config.password'
|
||||
@ -67,6 +68,11 @@ fn res_to_rows(res voidptr) []Row {
|
||||
return rows
|
||||
}
|
||||
|
||||
// close frees the underlaying resource allocated by the database connection
|
||||
pub fn (db DB) close() {
|
||||
C.PQfinish(db.conn)
|
||||
}
|
||||
|
||||
pub fn (db DB) q_int(query string) int {
|
||||
rows := db.exec(query)
|
||||
if rows.len == 0 {
|
||||
|
Loading…
Reference in New Issue
Block a user