mysql: fix for adapting mysql types to v structs (#15100)

This commit is contained in:
Hitalo de Jesus do Rosário Souza 2022-07-19 12:29:09 -03:00 committed by GitHub
parent 041e90b2e2
commit a13b8ff0c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 185 additions and 15 deletions

View file

@ -38,6 +38,8 @@ fn C.mysql_real_connect(mysql &C.MYSQL, host &char, user &char, passwd &char, db
fn C.mysql_query(mysql &C.MYSQL, q &u8) int
fn C.mysql_use_result(mysql &C.MYSQL)
fn C.mysql_real_query(mysql &C.MYSQL, q &u8, len u32) int
fn C.mysql_select_db(mysql &C.MYSQL, db &u8) int