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 mysql: add README.md (#7824) 2021-01-04 18:37:10 +02:00
_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 mysql: add more documentation (#7846) 2021-01-09 10:40:21 +02:00
_cdefs_windows.c.v mysql: patch for Windows and FreeBSD (#6703) 2020-11-01 22:15:33 +01:00
consts.v mysql: migrate connection flags to enum instead of const, fix example (#7803) 2021-01-02 15:09:20 +02:00
enums.v checker: disallow comparison between enum and int (#7886) 2021-01-08 17:41:52 +01:00
mysql.v checker: check `unsafe` V function calls (#8752) 2021-02-14 19:31:42 +01:00
result.v mysql: add more documentation (#7846) 2021-01-09 10:40:21 +02:00
utils.v mysql: add more documentation (#7846) 2021-01-09 10:40:21 +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()