[+/-]
mysqli_stmt::$affected_rows,
mysqli_stmt_affected_rowsmysqli_stmt::attr_get,
mysqli_stmt_attr_getmysqli_stmt::attr_set,
mysqli_stmt_attr_setmysqli_stmt::bind_param,
mysqli_stmt_bind_parammysqli_stmt::bind_result,
mysqli_stmt_bind_resultmysqli_stmt::close,
mysqli_stmt_closemysqli_stmt::data_seek,
mysqli_stmt_data_seekmysqli_stmt::$errno,
mysqli_stmt_errnomysqli_stmt::$error_list,
mysqli_stmt_error_listmysqli_stmt::$error,
mysqli_stmt_errormysqli_stmt::execute,
mysqli_stmt_executemysqli_stmt::fetch,
mysqli_stmt_fetchmysqli_stmt::$field_count,
mysqli_stmt_field_countmysqli_stmt::free_result,
mysqli_stmt_free_resultmysqli_stmt::get_result,
mysqli_stmt_get_resultmysqli_stmt::get_warnings,
mysqli_stmt_get_warningsmysqli_stmt::$insert_id,
mysqli_stmt_insert_idmysqli_stmt::more_results,
mysqli_stmt_more_resultsmysqli_stmt::next_result,
mysqli_stmt_next_resultmysqli_stmt::$num_rows,
mysqli_stmt_num_rowsmysqli_stmt::$param_count,
mysqli_stmt_param_countmysqli_stmt::prepare,
mysqli_stmt_preparemysqli_stmt::reset,
mysqli_stmt_resetmysqli_stmt::result_metadata,
mysqli_stmt_result_metadatamysqli_stmt::send_long_data,
mysqli_stmt_send_long_datamysqli_stmt::$sqlstate,
mysqli_stmt_sqlstatemysqli_stmt::store_result,
mysqli_stmt_store_resultCopyright 1997-2012 the PHP Documentation Group.
Represents a prepared statement.
mysqli_stmt {
mysqli_stmt Propertiesint mysqli_stmt->affected_rows ;int mysqli_stmt->errno ;array mysqli_stmt->error_list ;string mysqli_stmt->error ;int mysqli_stmt->field_count ;int mysqli_stmt->insert_id ;int mysqli_stmt->num_rows ;int mysqli_stmt->param_count ;string mysqli_stmt->sqlstate ;
Methodsint mysqli_stmt::attr_get(int attr);bool mysqli_stmt::attr_set(int attr,
int mode);bool mysqli_stmt::bind_param(string types,
mixed var1,
mixed ...);bool mysqli_stmt::bind_result(mixed var1,
mixed ...);bool mysqli_stmt::close();void mysqli_stmt::data_seek(int offset);bool mysqli_stmt::execute();bool mysqli_stmt::fetch();void mysqli_stmt::free_result();mysqli_result mysqli_stmt::get_result();object mysqli_stmt::get_warnings(mysqli_stmt stmt);mixed mysqli_stmt::prepare(string query);bool mysqli_stmt::reset();mysqli_result mysqli_stmt::result_metadata();bool mysqli_stmt::send_long_data(int param_nr,
string data);bool mysqli_stmt::store_result();
}

User Comments
Add your own comment.