You've already forked mariadb-connector-c
mirror of
https://github.com/mariadb-corporation/mariadb-connector-c.git
synced 2025-08-07 02:42:49 +03:00
several fixes for mariadb_stmt_execute_direct:
- allow param binding via mysql_stmt_attr_set: mysql_stmt_attr_set(stmt, STMT_ATTR_PREBIND_PARAMS, ¶m_count); - If a prepared statement will be reexecuted, we send COM_STMT_CLOSE together with COM_STMT_PREPARE and COM_STMT_EXECUTE
This commit is contained in:
@@ -876,7 +876,8 @@ static int test_get_options(MYSQL *my)
|
||||
mysql_options(mysql, options_char[i], char1);
|
||||
char2= NULL;
|
||||
mysql_get_optionv(mysql, options_char[i], (void *)&char2);
|
||||
FAIL_IF(strcmp(char1, char2), "mysql_get_optionv (char) failed");
|
||||
if (options_char[i] != MYSQL_SET_CHARSET_NAME)
|
||||
FAIL_IF(strcmp(char1, char2), "mysql_get_optionv (char) failed");
|
||||
}
|
||||
|
||||
for (i=0; i < 3; i++)
|
||||
|
Reference in New Issue
Block a user