mirror of
https://github.com/vlang/v.git
synced 2025-09-09 15:27:05 -04:00
db.pg: fix typos (#19654)
This commit is contained in:
parent
d11db9a3aa
commit
0f81e3bfd7
@ -279,7 +279,7 @@ pub fn (db DB) exec_param_many(query string, params []string) ![]Row {
|
||||
}
|
||||
}
|
||||
|
||||
// exec_param2 executes a query with 1 parameter ($1), and returns either an error on failure, or the full result set on success
|
||||
// exec_param executes a query with 1 parameter ($1), and returns either an error on failure, or the full result set on success
|
||||
pub fn (db DB) exec_param(query string, param string) ![]Row {
|
||||
return db.exec_param_many(query, [param])
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user