dbu query PHP函数,用于使用ADOdb库进行ddbb查询(插入查询)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dbu query PHP函数,用于使用ADOdb库进行ddbb查询(插入查询)相关的知识,希望对你有一定的参考价值。
A php function to get a Record Set using ADOdb Library.It takes the (SQL) query as an argument. For INSERT queries. NOTE: A call for a query.
It also need next variables: $dbhost,$dbuser,$dbpasswd,$dbname (data from de bbdd connexion). Can be declared in the document itself.
It returns the Record Set.
It needs the ADOdb Library for php.
function db_insert($sql){ global $db_host,$db_user,$db_passwd,$db_name; $conn->Connect($db_host,$db_user,$db_passwd,$db_name) ; // Connexion a MySQL $result=$conn->Execute("SET NAMES UTF8 ;"); $rs=$conn->Execute($sql); // Ejecutar SQL y devuelve un ADORecordSet $ID=$conn->Insert_ID(); //Retorna el ID del registro insertado $conn->Close(); return $ID; }
以上是关于dbu query PHP函数,用于使用ADOdb库进行ddbb查询(插入查询)的主要内容,如果未能解决你的问题,请参考以下文章
这个PHP代码中有什么问题可以在使用adodb存储的mysql列中找到Sum?
Query (SQL Server 2008 Express) 在 SQL Server Management Studio 中有效,但在 Delphi 中使用 ADODB 无效