v/vlib/mysql
Delyan Angelov 3702445fb3
ci: fix failing tests for mysql, crypto.rc4, strings
2022-04-17 12:14:30 +02:00
..
README.md
_cdefs.c.v all: ~500 more byte=>u8 2022-04-17 12:14:29 +02:00
_cdefs_nix.c.v mysql: always use `#include <mysql.h>`, rely on pkgconfig to get the correct include folder 2021-10-23 21:22:10 +03:00
_cdefs_windows.c.v
consts.v
enums.v
mysql.v builtin: change IError `msg` and `code` to methods + fix vlib, add a deprecation notice for the old usages (#13041) 2022-02-11 15:52:33 +02:00
mysql_orm_test.v
orm.v ci: fix `v build-examples` 2022-04-17 12:14:30 +02:00
result.v all: ~500 more byte=>u8 2022-04-17 12:14:29 +02:00
stmt.c.v ci: fix failing tests for mysql, crypto.rc4, strings 2022-04-17 12:14:30 +02:00
utils.v all: ~500 more byte=>u8 2022-04-17 12:14:29 +02:00

README.md

For Linux, you need to install MySQL development package and pkg-config. For Windows, install the installer , then copy the include and lib folders to <V install directory>\thirdparty\mysql.

Basic Usage

import mysql

// Create connection
mut connection := mysql.Connection{
	username: 'root'
	dbname: 'mysql'
}
// Connect to server
connection.connect() ?
// Change the default database
connection.select_db('db_users') ?
// Do a query
get_users_query_result := connection.query('SELECT * FROM users') ?
// Get the result as maps
for user in get_users_query_result.maps() {
	// Access the name of user
	println(user['name'])
}
// Free the query result
get_users_query_result.free()
// Close the connection if needed
connection.close()