您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

php扩展MySQLi

2024/6/28 23:23:49发布23次查看
mysqli扩展允许我们访问mysql 4.1及以上版本提供的功能。 
mysqli扩展和持久化连接
mysqli扩展的持久化连接在php5.3中被引入。支持已经存在于pdo mysql 和ext/mysql中。持久化连接背后的思想是客户端进程和数据库之间的连接可以通过一个客户端进程来保持重用, 而不是多次的创建和销毁。这降低了每次需要创建一个新连接的开销,未使用的连接被缓存起来并且准备随时被重用。
不像mysql扩展,mysqli没有提供一个特殊的方法用于打开持久化连接。需要打开一个持久化连接时,你必须在 连接时在主机名前增加p:。
使用持久化连接的问题在于它们可能在客户端处于不可预知的状态。比如,一个表锁可能在客户端意外终止之前被激活。 一个新的客户端进程重用这个持久化连接就会按照原样得到这个连接。这样,一个新的客户端进程 为了更好的使用持久化连接,就需要做任何可能的清理工作,这样就增加了对程序员的负担。
mysqli扩展的持久化连接提供了内建的清理处理代码。mysqli 所做的清理工作包括:
回滚活动的事务
关闭并且删除临时表
对表解锁、
重置会话变量
关闭prepared语句(在php中经常发生)
关闭处理程序
释放通过 get_lock()获得的锁
这确保了从连接池返回的持久化连接在客户端进程使用它之前处于干净的状态。
mysqli扩展通过自动的调用c-api函数mysql_change_user() 来完成这个清理工作。
自动清理的特性有优点也有缺点。优点是程序员不再需要担心附加的清理代码,因为它们会自动调用。然而缺点就是 代码可能会潜在的慢一点,因为每次从连接池返回一个连接都需要执行这些清理代码。
这个自动清理的代码可以通过在编译php时定义mysqli_no_change_user_on_pconnect 来关闭。
mysqli扩展在使用mysql native driver或mysql client library(libmysql)时都支持持久化连接。
mysqli类
代表php和mysql数据库之间的一个连接。
mysqli::$affected_rows — gets the number of affected rows in a previous mysql operation
mysqli::autocommit — 打开或关闭本次数据库连接的自动命令提交事务模式
mysqli::begin_transaction — starts a transaction
mysqli::change_user — changes the user of the specified database connection
mysqli::character_set_name — 返回当前数据库连接的默认字符编码
mysqli::$client_info — get mysql client info
mysqli::$client_version — returns the mysql client version as a string
mysqli::close — 关闭先前打开的数据库连接
mysqli::commit — 提交一个事务
mysqli::$connect_errno — returns the error code from last connect call
mysqli::$connect_error — returns a string description of the last connect error
mysqli::__construct — open a new connection to the mysql server
mysqli::debug — performs debugging operations
mysqli::dump_debug_info — 将调试信息输出到日志
mysqli::errno — 返回最近函数调用的错误代码
mysqli::$error_list — returns a list of errors from the last command executed
mysqli::$error — returns a string description of the last error
mysqli::$field_count — returns the number of columns for the most recent query
mysqli::get_charset — returns a character set object
mysqli::get_client_info — get mysql client info
mysqli_get_client_stats — returns client per-process statistics
mysqli_get_client_version — returns the mysql client version as an integer
mysqli::get_connection_stats — returns statistics about the client connection
mysqli::$host_info — returns a string representing the type of connection used
mysqli::$protocol_version — returns the version of the mysql protocol used
mysqli::$server_info — returns the version of the mysql server
mysqli::$server_version — returns the version of the mysql server as an integer
mysqli::get_warnings — get result of show warnings
mysqli::$info — retrieves information about the most recently executed query
mysqli::init — initializes mysqli and returns a resource for use with mysqli_real_connect()
mysqli::$insert_id — returns the auto generated id used in the last query
mysqli::kill — asks the server to kill a mysql thread
mysqli::more_results — check if there are any more query results from a multi query
mysqli::multi_query — performs a query on the database
mysqli::next_result — prepare next result from multi_query
mysqli::options — set options
mysqli::ping — pings a server connection, or tries to reconnect if the connection has gone down
mysqli::poll — poll connections
mysqli::prepare — prepare an sql statement for execution
mysqli::query — 对数据库执行一次查询
mysqli::real_connect — opens a connection to a mysql server
mysqli::real_escape_string — escapes special characters in a string for use in an sql statement, taking into account the current charset of the connection
mysqli::real_query — 执行一个mysql查询
mysqli::reap_async_query — get result from async query
mysqli::refresh — refreshes
mysqli::release_savepoint — rolls back a transaction to the named savepoint
mysqli::rollback — 回退当前事务
mysqli::rpl_query_type — returns rpl query type
mysqli::savepoint — set a named transaction savepoint
mysqli::select_db — 选择用于数据库查询的默认数据库
mysqli::send_query — 发送请求并返回结果
mysqli::set_charset — 设置默认字符编码
mysqli::set_local_infile_default — unsets user defined handler for load local infile command
mysqli::set_local_infile_handler — set callback function for load data local infile command
mysqli::$sqlstate — returns the sqlstate error from previous mysql operation
mysqli::ssl_set — used for establishing secure connections using ssl
mysqli::stat — gets the current system status
mysqli::stmt_init — 初始化一条语句并返回一个用于mysqli_stmt_prepare(调用)的对象
mysqli::store_result — transfers a result set from the last query
mysqli::$thread_id — returns the thread id for the current connection
mysqli::thread_safe — 返回是否是线程安全的
mysqli::use_result — initiate a result set retrieval
mysqli::$warning_count — returns the number of warnings from the last query for the given link
mysqli_stmt类
代表一个prepared语句。
mysqli_stmt::$affected_rows — returns the total number of rows changed, deleted, or inserted by the last executed statement
mysqli_stmt::attr_get — used to get the current value of a statement attribute
mysqli_stmt::attr_set — used to modify the behavior of a prepared statement
mysqli_stmt::bind_param — binds variables to a prepared statement as parameters
mysqli_stmt::bind_result — binds variables to a prepared statement for result storage
mysqli_stmt::close — closes a prepared statement
mysqli_stmt::data_seek — seeks to an arbitrary row in statement result set
mysqli_stmt::$errno — returns the error code for the most recent statement call
mysqli_stmt::$error_list — returns a list of errors from the last statement executed
mysqli_stmt::$error — returns a string description for last statement error
mysqli_stmt::execute — executes a prepared query
mysqli_stmt::fetch — fetch results from a prepared statement into the bound variables
mysqli_stmt::$field_count — returns the number of field in the given statement
mysqli_stmt::free_result — frees stored result memory for the given statement handle
mysqli_stmt::get_result — gets a result set from a prepared statement
mysqli_stmt::get_warnings — get result of show warnings
mysqli_stmt::$insert_id — get the id generated from the previous insert operation
mysqli_stmt::more_results — check if there are more query results from a multiple query
mysqli_stmt::next_result — reads the next result from a multiple query
mysqli_stmt::$num_rows — return the number of rows in statements result set
mysqli_stmt::$param_count — returns the number of parameter for the given statement
mysqli_stmt::prepare — prepare an sql statement for execution
mysqli_stmt::reset — resets a prepared statement
mysqli_stmt::result_metadata — returns result set metadata from a prepared statement
mysqli_stmt::send_long_data — send data in blocks
mysqli_stmt::$sqlstate — returns sqlstate error from previous statement operation
mysqli_stmt::store_result — transfers a result set from a prepared statement
mysqli_result类
代表从一个数据库查询中获取的结果集
mysqli_result::$current_field — get current field offset of a result pointer
mysqli_result::data_seek — adjusts the result pointer to an arbitrary row in the result
mysqli_result::fetch_all — fetches all result rows as an associative array, a numeric array, or both
mysqli_result::fetch_array — fetch a result row as an associative, a numeric array, or both
mysqli_result::fetch_assoc — fetch a result row as an associative array
mysqli_result::fetch_field_direct — fetch meta-data for a single field
mysqli_result::fetch_field — returns the next field in the result set
mysqli_result::fetch_fields — returns an array of objects representing the fields in a result set
mysqli_result::fetch_object — returns the current row of a result set as an object
mysqli_result::fetch_row — get a result row as an enumerated array
mysqli_result::$field_count — get the number of fields in a result
mysqli_result::field_seek — set result pointer to a specified field offset
mysqli_result::free — frees the memory associated with a result
mysqli_result::$lengths — returns the lengths of the columns of the current row in the result set
mysqli_result::$num_rows — gets the number of rows in a result
mysqli_driver类
mysqli 驱动.
client_info
客户端api头版本(比如:(string)5.1.49)
client_version
客户端版本(比如:(int)50149)
driver_version
mysqli驱动版本(比如:(int)101009)
embedded
是否开启了mysqli嵌入式支持。
reconnect
允许或阻止重连接(查看ini指令中的mysqli.reconnect)
report_mode
设置为mysqli_report_off, mysqli_report_all或者 mysqli_report_strict (为错误抛出异常,译注:需要和mysqli_report_error联合使用), mysqli_report_error (报告mysql错误)和 mysqli_report_index (报告索引相关的错误)的任意组合。
mysqli_driver::embedded_server_end — stop embedded server
mysqli_driver::embedded_server_start — initialize and start embedded server
mysqli_driver::$report_mode — enables or disables internal report functions
mysqli_warning类
代表一个mysql警告。
message
消息字符串
sqlstate
sql状态
errno
错误编号
mysqli_warning::__construct — the __construct purpose
mysqli_warning::next — the next purpose
mysqli_sql_exception类
mysqli异常处理类
mysqli_sql_exception extends runtimeexception { /* 属性 */ protected string $sqlstate ; /* 继承的属性 */ protected string $message ; protected int $code ; protected string $file ; protected int $line ; }
别名和过时的mysqli 函数
mysqli_bind_param — mysqli_stmt_bind_param的别名
mysqli_bind_result — mysqli_stmt_bind_result的别名
mysqli_client_encoding — mysqli_character_set_name的别名
mysqli_connect — 别名 mysqli::__construct
mysqli::disable_reads_from_master — disable reads from master
mysqli_disable_rpl_parse — 禁用rpl解析
mysqli_enable_reads_from_master — 开启从主机读取
mysqli_enable_rpl_parse — 开启rpl解析
mysqli_escape_string — 别名 mysqli_real_escape_string
mysqli_execute — mysqli_stmt_execute的别名
mysqli_fetch — mysqli_stmt_fetch的别名。
mysqli_get_cache_stats — 返回客户端zval缓存统计信息
mysqli_get_metadata — mysqli_stmt_result_metadata的别名
mysqli_master_query — 在主/从机制中强制在主机中执行一个查询
mysqli_param_count — mysqli_stmt_param_count的别名
mysqli_report — 开启或禁用(mysql)内部(错误)报告函数
mysqli_rpl_parse_enabled — 检查是否开启了rpl解析
mysqli_rpl_probe — rpl探测
mysqli_send_long_data — mysqli_stmt_send_long_data的别名
mysqli_set_opt — mysqli_options的别名
mysqli_slave_query — 在主/从机制中强制在从机上执行一个查询
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product