v/vlib/mysql
Louis Schmieder a55ba08fad
orm: fix time (#11026)
2021-08-03 05:17:00 +03:00
..
README.md
_cdefs.c.v orm: redesign orm (re-write it in V) (#10353) 2021-07-23 12:33:55 +03:00
_cdefs_nix.c.v orm: redesign orm (re-write it in V) (#10353) 2021-07-23 12:33:55 +03:00
_cdefs_windows.c.v
consts.v
enums.v orm: redesign orm (re-write it in V) (#10353) 2021-07-23 12:33:55 +03:00
mysql.v orm: redesign orm (re-write it in V) (#10353) 2021-07-23 12:33:55 +03:00
mysql_orm_test.v orm: redesign orm (re-write it in V) (#10353) 2021-07-23 12:33:55 +03:00
orm.v orm: fix time (#11026) 2021-08-03 05:17:00 +03:00
result.v
stmt.c.v orm: redesign orm (re-write it in V) (#10353) 2021-07-23 12:33:55 +03:00
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()