/ Published in: PHP
URL: http://phplens.com/adodb/
A PHP function to get a Record Set using ADOdb Library.
It takes the (SQL) query as an argument. For SELECT,UPDATE and DELETE queries.
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.
Expand |
Embed | Plain Text
function db_query($sql){ $conn=ADONewConnection('mysql'); //Instancia de ADODB para proveedor MySQL. Es pot elegir motor (segons parametre, podria ser oracle...) $conn->Connect($db_host,$db_user,$db_passwd,$db_name) ; // Connexion a MySQL. Usa el metodo Connect.. $result=$conn->Execute("SET lc_time_names = 'ca_ES' ;"); //Per adoptar idioma castellano� (Per errors...) $result=$conn->Execute("SET NAMES UTF8 ;"); //Pel joc de caracters $rs=$conn->Execute($sql); // Ejecutar SQL y devuelve un ADORecordSet $conn->Close(); return $rs; //Funcion devuelve todo el ADORecordSet. }
You need to login to post a comment.
