v/vlib/mysql/utils.v

18 lines
440 B
V
Raw Normal View History

module mysql
2020-06-11 10:07:17 +02:00
// get_error_msg returns error message from MySQL instance.
fn get_error_msg(conn &C.MYSQL) string {
return string(C.mysql_error(conn))
}
2020-06-11 10:07:17 +02:00
// get_errno returns error number from MySQL instance.
fn get_errno(conn &C.MYSQL) int {
return C.mysql_errno(conn)
}
2020-06-11 10:07:17 +02:00
// resolve_nil_str returns empty string if passed value is a nil pointer.
fn resolve_nil_str(ptr byteptr) string {
2020-06-11 10:07:17 +02:00
if isnil(ptr) { return '' }
return string(ptr)
}