1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/mysql
2021-10-22 16:44:08 +03:00
..
_cdefs_nix.c.v mysql: fix compilation with libmariadb-dev, but no libmysqlclient-dev installed 2021-10-22 16:44:08 +03:00
_cdefs_windows.c.v v: deprecate @VROOT in favour of @VMODROOT (#9795) 2021-04-19 19:01:47 +03:00
_cdefs.c.v orm: redesign orm (re-write it in V) (#10353) 2021-07-23 12:33:55 +03: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 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
mysql.v orm: redesign orm (re-write it in V) (#10353) 2021-07-23 12:33:55 +03:00
orm.v orm: fix last_id() call in mysql (#12173) 2021-10-13 21:24:07 +03:00
README.md mysql: use v oksyntax for the example in the README.md, so that the check passes on m1 without installed mysql 2021-06-07 18:39:42 +03:00
result.v tools: make v test-cleancode test everything by default (#10050) 2021-05-08 13:32:29 +03:00
stmt.c.v orm: redesign orm (re-write it in V) (#10353) 2021-07-23 12:33:55 +03:00
utils.v tools: make v test-cleancode test everything by default (#10050) 2021-05-08 13:32:29 +03:00

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