| Login | Register | |||
| Recommend this page to a friend! |
| Classes of Alejandro Vidal Quiroga | > | DBInterface | > | Download | > | > | > | |||||
|
|||||||||||||||||||||||||
| Author | Detailed description | |||||
| Applications | ||||||
Author
Groups
Detailed descriptionThis class can be used a SQL database abstraction layer.
It provides a single interface to access several types of SQL databases from the same class. Currently it supports MySQL, PostgreSQL, Interbase and Microsoft SQL server. It can establish connections to the database server, execute SQL queries, retrieve query results, begin and end transactions, build and execute common types of SQL queries from a list of parameters, generate XML from query results, etc.. The values are retrived from global variables, you only must enter the name. If you want enter the entire format you can do it. Notice: the field and the global variable must have the same name. Example: // In your config file $CFG_SQL_db = 'dbname'; $CFG_SQL_usuario = 'user'; $CFG_SQL_clave = 'password'; $CFG_SQL_server = 'localhost'; $CFG_SQL_tipo = 'mysql'; // Mysql Code $dbi = DBI::select('table','field1,field2',"field1 = '$value'"); while($record = $dbi->fetch_object() ) { echo "Field1: $record->field1"; } // PostgreSQL $dbi = DBI::select('table','field1,field2',"field1 = '$value'"); while($record = $dbi->fetch_object() ) { echo "Field1: $record->field1"; } // XML Dump $dbi = new DBI(); echo $dbi->XMLDump('select * from table', 'Records'); // Upload Images // View Code <input type="file" name="picture"/> // Application code (the table has a field named picture with blob type) dbi::insert('table','picture::blob'); User ratings
Applications that use this classNo application links were specified for this class.
Files
|
| Copyright (c) Icontem 1999-2009 | PHP Classes | - PHP Class Scripts |
| PHP Book Reviews | - Reviews of books and other products |