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
Merge remote-tracking branch 'origin/3.0' into 3.1
This commit is contained in:
@@ -1452,15 +1452,12 @@ int STDCALL mysql_stmt_fetch(MYSQL_STMT *stmt)
|
||||
return(rc);
|
||||
}
|
||||
|
||||
if ((rc= stmt->mysql->methods->db_stmt_fetch_to_bind(stmt, row)))
|
||||
{
|
||||
return(rc);
|
||||
}
|
||||
rc= stmt->mysql->methods->db_stmt_fetch_to_bind(stmt, row);
|
||||
|
||||
stmt->state= MYSQL_STMT_USER_FETCHING;
|
||||
CLEAR_CLIENT_ERROR(stmt->mysql);
|
||||
CLEAR_CLIENT_STMT_ERROR(stmt);
|
||||
return(0);
|
||||
return(rc);
|
||||
}
|
||||
|
||||
int STDCALL mysql_stmt_fetch_column(MYSQL_STMT *stmt, MYSQL_BIND *bind, unsigned int column, unsigned long offset)
|
||||
|
Reference in New Issue
Block a user