1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/mysql
2023-02-16 11:34:16 +02:00
..
_cdefs_nix.c.v mysql: always use #include <mysql.h>, rely on pkgconfig to get the correct include folder 2021-10-23 21:22:10 +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 mysql: fix for adapting mysql types to v structs (#15100) 2022-07-19 18:29:09 +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.v db, json, time, term: change optional to result (#16201) 2022-10-26 11:26:28 +03:00
orm.v orm: allow inserting empty objects with db.sqlite (SQLite uses a slightly different SQL dialect) (#17334) 2023-02-16 11:34:16 +02:00
README.md vlib: move the mysql/sqlite/pg/mssql modules under vlib/db (#16820) 2023-01-13 17:02:32 +02:00
result.v vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
stmt.c.v checker: require unsafe for Struct(voidptr) casts 2023-01-06 09:28:11 +03:00
utils.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
z_deprecated.v vlib: move the mysql/sqlite/pg/mssql modules under vlib/db (#16820) 2023-01-13 17:02:32 +02:00

Description:

The mysql module has been moved to db.mysql. Update your code to do: import db.mysql instead.