v/vlib/mysql
joe-conigliaro 2d73411396
checker: define missing C fn args & check C & JS args (#8770)
2021-03-05 17:41:11 +03:00
..
README.md
_cdefs.c.v checker: define missing C fn args & check C & JS args (#8770) 2021-03-05 17:41:11 +03:00
_cdefs_nix.c.v
_cdefs_windows.c.v
consts.v
enums.v
mysql.v checker: check `unsafe` V function calls (#8752) 2021-02-14 19:31:42 +01:00
result.v
utils.v

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()