1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/db/mysql
2023-08-10 05:21:44 +03:00
..
_cdefs_nix.c.v mysql: refactor, comments, simplify (#18258) 2023-05-25 02:50:15 +02:00
_cdefs_windows.c.v vlib: move the mysql/sqlite/pg/mssql modules under vlib/db (#16820) 2023-01-13 17:02:32 +02:00
_cdefs.c.v mysql: add the ability to commit transactions, some code improvements (#18268) 2023-05-26 02:16:02 +02:00
consts.v mysql: refactor, comments, simplify (#18258) 2023-05-25 02:50:15 +02:00
enums.v mysql: refactor, comments, simplify (#18258) 2023-05-25 02:50:15 +02:00
mysql_orm_test.v mysql: connection fixes (#18428) 2023-06-13 08:49:41 +03:00
mysql.v mysql: connection fixes (#18428) 2023-06-13 08:49:41 +03:00
orm.v db.mysql: fix the support for TIMESTAMP columns (#18704) 2023-06-29 06:49:58 +03:00
README.md docs: unify format of notes (#17294) 2023-02-13 10:29:02 +02:00
result.v db.mysql: make mysql.Result.result public (fix #19098) 2023-08-10 05:21:44 +03:00
stmt.c.v mysql: connection fixes (#18428) 2023-06-13 08:49:41 +03:00
utils.v mysql: refactor, comments, simplify (#18258) 2023-05-25 02:50:15 +02: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.

Troubleshooting

If you encounter weird errors (your program just exits right away, without printing any messages, even though you have println('hi') statements in your fn main()), when trying to run a program that does import db.mysql on windows, you may need to copy the .dll file: thirdparty/mysql/lib/libmysql.dll, into the folder of the executable too (it should be right next to the .exe file).

This is a temporary workaround, until we have a more permanent solution, or at least more user friendly errors for that situation.

Basic Usage

import db.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()