2019-08-18 16:24:43 +02:00
|
|
|
module mysql
|
|
|
|
|
2020-06-01 11:26:39 +02:00
|
|
|
// TODO: Documentation
|
2020-02-02 12:39:57 +01:00
|
|
|
pub struct Connection {
|
2020-06-01 11:26:39 +02:00
|
|
|
mut:
|
|
|
|
conn &C.MYSQL = C.mysql_init(0)
|
|
|
|
pub mut:
|
2020-10-19 20:11:04 +02:00
|
|
|
host string = '127.0.0.1'
|
|
|
|
port u32 = 3306
|
2020-02-02 12:39:57 +01:00
|
|
|
username string
|
|
|
|
password string
|
|
|
|
dbname string
|
|
|
|
flag int
|
2019-08-18 16:24:43 +02:00
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// connect connects to a MySQL server.
|
2020-05-17 13:51:18 +02:00
|
|
|
pub fn (mut conn Connection) connect() ?bool {
|
2020-06-01 11:26:39 +02:00
|
|
|
instance := C.mysql_init(conn.conn)
|
2020-10-19 20:11:04 +02:00
|
|
|
conn.conn = C.mysql_real_connect(conn.conn, conn.host.str, conn.username.str, conn.password.str,
|
|
|
|
conn.dbname.str, conn.port, 0, conn.flag)
|
2020-02-02 12:39:57 +01:00
|
|
|
if isnil(conn.conn) {
|
|
|
|
return error_with_code(get_error_msg(instance), get_errno(instance))
|
|
|
|
}
|
|
|
|
return true
|
2019-08-18 16:24:43 +02:00
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// query executes an SQL query.
|
|
|
|
// `query()` cannot be used for statements that contain binary data; you must use `real_query()` instead.
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn (conn Connection) query(q string) ?Result {
|
2020-05-04 14:58:24 +02:00
|
|
|
if C.mysql_query(conn.conn, q.str) != 0 {
|
2020-02-02 12:39:57 +01:00
|
|
|
return error_with_code(get_error_msg(conn.conn), get_errno(conn.conn))
|
|
|
|
}
|
2020-05-04 14:58:24 +02:00
|
|
|
res := C.mysql_store_result(conn.conn)
|
2020-02-02 12:39:57 +01:00
|
|
|
return Result{res}
|
|
|
|
}
|
2019-12-02 15:26:58 +01:00
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// real_query executes an SQL query. Same as `query ()`,
|
|
|
|
// But `real_query ()` can be used for statements containing binary data.
|
|
|
|
// (Binary data may contain the \0 character, which `query()` interprets as the end of the statement string).
|
|
|
|
// In addition, `real_query()` is faster than `query()`.
|
|
|
|
pub fn (conn Connection) real_query(q string) ?Result {
|
|
|
|
if C.mysql_real_query(conn.conn, q.str, q.len) != 0 {
|
|
|
|
return error_with_code(get_error_msg(conn.conn), get_errno(conn.conn))
|
|
|
|
}
|
|
|
|
res := C.mysql_store_result(conn.conn)
|
|
|
|
return Result{res}
|
|
|
|
}
|
|
|
|
|
|
|
|
// select_db selects the default database for database queries.
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn (conn Connection) select_db(dbname string) ?bool {
|
2020-05-04 14:58:24 +02:00
|
|
|
if C.mysql_select_db(conn.conn, dbname.str) != 0 {
|
2020-02-02 12:39:57 +01:00
|
|
|
return error_with_code(get_error_msg(conn.conn), get_errno(conn.conn))
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
2019-08-18 16:24:43 +02:00
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// change_user changes the user of the specified database connection.
|
|
|
|
// if desired, the empty string value can be passed to the `dbname` parameter
|
|
|
|
// resulting in only changing the user and not selecting a database.
|
2020-10-19 20:11:04 +02:00
|
|
|
pub fn (conn Connection) change_user(username string, password string, dbname string) ?bool {
|
2020-02-02 12:39:57 +01:00
|
|
|
mut ret := true
|
2020-03-29 10:08:42 +02:00
|
|
|
if dbname != '' {
|
2020-05-04 14:58:24 +02:00
|
|
|
ret = C.mysql_change_user(conn.conn, username.str, password.str, dbname.str)
|
2020-02-02 12:39:57 +01:00
|
|
|
} else {
|
2020-05-04 14:58:24 +02:00
|
|
|
ret = C.mysql_change_user(conn.conn, username.str, password.str, 0)
|
2019-08-18 16:24:43 +02:00
|
|
|
}
|
2020-02-02 12:39:57 +01:00
|
|
|
if !ret {
|
|
|
|
return error_with_code(get_error_msg(conn.conn), get_errno(conn.conn))
|
2019-08-18 16:24:43 +02:00
|
|
|
}
|
2020-02-02 12:39:57 +01:00
|
|
|
return ret
|
2019-08-18 16:24:43 +02:00
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// affected_rows returns the number of rows changed/deleted/inserted
|
|
|
|
// by the last UPDATE, DELETE, or INSERT query.
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn (conn Connection) affected_rows() u64 {
|
2020-05-04 14:58:24 +02:00
|
|
|
return C.mysql_affected_rows(conn.conn)
|
2020-02-02 12:39:57 +01:00
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// autocommit turns on or off auto-committing database modifications.
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn (conn Connection) autocommit(mode bool) {
|
2020-05-04 14:58:24 +02:00
|
|
|
C.mysql_autocommit(conn.conn, mode)
|
2019-08-18 16:24:43 +02:00
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// tables returns list of tables that match the `wildcard` parameter.
|
|
|
|
// If empty string is passed, will return all tables.
|
2020-06-01 11:26:39 +02:00
|
|
|
pub fn (conn Connection) tables(wildcard string) ?[]string {
|
|
|
|
cres := C.mysql_list_tables(conn.conn, wildcard.str)
|
|
|
|
if isnil(cres) {
|
|
|
|
return error_with_code(get_error_msg(conn.conn), get_errno(conn.conn))
|
|
|
|
}
|
2020-10-19 20:11:04 +02:00
|
|
|
res := Result{cres}
|
2020-06-01 11:26:39 +02:00
|
|
|
mut tables := []string{}
|
|
|
|
for row in res.rows() {
|
|
|
|
tables << row.vals[0]
|
|
|
|
}
|
|
|
|
res.free()
|
|
|
|
return tables
|
|
|
|
}
|
2020-02-02 12:39:57 +01:00
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// escape_string creates a legal SQL string for use in an SQL statement.
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn (conn Connection) escape_string(s string) string {
|
2020-10-26 10:21:28 +01:00
|
|
|
to := malloc(2 * s.len + 1)
|
|
|
|
C.mysql_real_escape_string_quote(conn.conn, to, s.str, s.len, `\'`)
|
2020-10-19 20:11:04 +02:00
|
|
|
return unsafe {to.vstring()}
|
2019-12-13 17:12:42 +01:00
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// set_option is used to set extra connect options and affect behavior for a connection.
|
2020-06-01 11:26:39 +02:00
|
|
|
// This function may be called multiple times to set several options.
|
2020-06-11 10:07:17 +02:00
|
|
|
// To retrieve option values, use `get_option()`.
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn (conn Connection) set_option(option_type int, val voidptr) {
|
2020-05-04 14:58:24 +02:00
|
|
|
C.mysql_options(conn.conn, option_type, val)
|
2020-02-02 12:39:57 +01:00
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// get_option returns the current value of an option settable `set_option`.
|
|
|
|
// The value should be treated as read only.
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn (conn Connection) get_option(option_type int) ?voidptr {
|
|
|
|
ret := voidptr(0)
|
2020-05-04 14:58:24 +02:00
|
|
|
if C.mysql_get_option(conn.conn, option_type, &ret) != 0 {
|
2020-02-02 12:39:57 +01:00
|
|
|
return error_with_code(get_error_msg(conn.conn), get_errno(conn.conn))
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// refresh flushes tables or caches, or resets replication server information.
|
|
|
|
// The connected user must have the `RELOAD` privilege.
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn (conn Connection) refresh(options u32) ?bool {
|
2020-05-04 14:58:24 +02:00
|
|
|
if C.mysql_refresh(conn.conn, options) != 0 {
|
2020-02-02 12:39:57 +01:00
|
|
|
return error_with_code(get_error_msg(conn.conn), get_errno(conn.conn))
|
2020-01-11 13:25:59 +01:00
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// reset resets the connection to clear the session state.
|
|
|
|
pub fn (conn Connection) reset() ?bool {
|
2020-05-04 14:58:24 +02:00
|
|
|
if C.mysql_reset_connection(conn.conn) != 0 {
|
2020-02-02 12:39:57 +01:00
|
|
|
return error_with_code(get_error_msg(conn.conn), get_errno(conn.conn))
|
|
|
|
}
|
|
|
|
return true
|
2019-08-18 16:24:43 +02:00
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// ping pings a server connection, or tries to reconnect if the connection has gone down.
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn (conn Connection) ping() ?bool {
|
2020-05-04 14:58:24 +02:00
|
|
|
if C.mysql_ping(conn.conn) != 0 {
|
2020-02-02 12:39:57 +01:00
|
|
|
return error_with_code(get_error_msg(conn.conn), get_errno(conn.conn))
|
|
|
|
}
|
|
|
|
return true
|
2019-08-18 16:24:43 +02:00
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// close closes a previously opened database connection.
|
2020-06-01 11:26:39 +02:00
|
|
|
pub fn (conn &Connection) close() {
|
2020-05-04 14:58:24 +02:00
|
|
|
C.mysql_close(conn.conn)
|
2019-08-18 16:24:43 +02:00
|
|
|
}
|
|
|
|
|
2020-10-19 20:11:04 +02:00
|
|
|
// -------------------------- MYSQL INFO & VERSION --------------------------
|
2020-06-11 10:07:17 +02:00
|
|
|
// info returns information about the most recently executed query.
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn (conn Connection) info() string {
|
2020-06-01 11:26:39 +02:00
|
|
|
return resolve_nil_str(C.mysql_info(conn.conn))
|
2020-02-02 12:39:57 +01:00
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// get_host_info returns a string describing the connection.
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn (conn Connection) get_host_info() string {
|
2020-10-19 20:11:04 +02:00
|
|
|
return unsafe {C.mysql_get_host_info(conn.conn).vstring()}
|
2020-02-02 12:39:57 +01:00
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// get_server_info returns the server version number as a string.
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn (conn Connection) get_server_info() string {
|
2020-10-19 20:11:04 +02:00
|
|
|
return unsafe {C.mysql_get_server_info(conn.conn).vstring()}
|
2020-02-02 12:39:57 +01:00
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// get_server_version returns the server version number as an integer.
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn (conn Connection) get_server_version() u64 {
|
2020-05-04 14:58:24 +02:00
|
|
|
return C.mysql_get_server_version(conn.conn)
|
2019-08-18 16:24:43 +02:00
|
|
|
}
|
|
|
|
|
2020-10-19 20:11:04 +02:00
|
|
|
// --------------------------------- CLIENT ---------------------------------
|
2020-06-11 10:07:17 +02:00
|
|
|
// get_client_info returns client version information as a string.
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn get_client_info() string {
|
2020-10-19 20:11:04 +02:00
|
|
|
return unsafe {C.mysql_get_client_info().vstring()}
|
2020-02-02 12:39:57 +01:00
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// get_client_version returns client version information as an integer.
|
2020-06-01 11:26:39 +02:00
|
|
|
pub fn get_client_version() u64 {
|
|
|
|
return C.mysql_get_client_version()
|
|
|
|
}
|
|
|
|
|
2020-10-19 20:11:04 +02:00
|
|
|
// ------------------------------- MYSQL DEBUG ------------------------------
|
2020-06-11 10:07:17 +02:00
|
|
|
// dump_debug_info causes the server to write debug information to the log
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn (conn Connection) dump_debug_info() ?bool {
|
2020-05-04 14:58:24 +02:00
|
|
|
if C.mysql_dump_debug_info(conn.conn) != 0 {
|
2020-02-02 12:39:57 +01:00
|
|
|
return error_with_code(get_error_msg(conn.conn), get_errno(conn.conn))
|
|
|
|
}
|
|
|
|
return true
|
2019-12-03 09:18:20 +01:00
|
|
|
}
|
|
|
|
|
2020-06-11 10:07:17 +02:00
|
|
|
// debug does a `DBUG_PUSH` with the given string.
|
2020-06-01 11:26:39 +02:00
|
|
|
// See https://dev.mysql.com/doc/refman/5.7/en/mysql-debug.html
|
2020-02-02 12:39:57 +01:00
|
|
|
pub fn debug(debug string) {
|
2020-05-04 14:58:24 +02:00
|
|
|
C.mysql_debug(debug.str)
|
2019-12-03 09:18:20 +01:00
|
|
|
}
|