-
Notifications
You must be signed in to change notification settings - Fork 267
ps_api
Georg Richter edited this page Aug 31, 2018
·
23 revisions
- mariadb_stmt_execute_direct - Prepares and executes a statement
- mariadb_stmt_fetch_fields - Returns an array of fields containing the column definitions
- mysql_stmt_affected_rows - Returns the number of affected rows from previous executed prepared statement.
- mysql_stmt_attr_get - Returns the current value of a statement attribute
- mysql_stmt_attr_set - Sets attribute of a statement
- mysql_stmt_bind_param - Binds statemet to a prepared statement
- mysql_stmt_bind_result - Binds result columns to variables
- mysql_stmt_close - Closes a prepared statement
- mysql_stmt_data_seek - Seeks to an arbitrary row in statement result set
- mysql_stmt_errno - Returns an error number for the last statement error.
- mysql_stmt_error - Returns a string description for the last statement error.
- mysql_stmt_execute - Executes a prepared statement
- mysql_stmt_fetch - Fetch result row from a prepared statement
- mysql_stmt_fetch_column - Fetches a single column in to a bind buffer
- mysql_stmt_field_count - Returns the number of fields in a result set of a prepared statement.
- mysql_stmt_free_result - Frees stored result memory of a prepared statement.
- mysql_stmt_init - Initializes a prepared statement.
- mysql_stmt_insert_id - Get the auto generated id from previously executed prepared statement.
- mysql_stmt_next_result - Returns next prepared statement result set
MariaDB Connector/C Reference