1
0
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:
Leonardo Cecchi 2020-09-21 01:47:37 +02:00 committed by GitHub
parent e429a77de2
commit 21c5ff681b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {