Recommend this page to a friend! |
All class groups | > | All authors | > | Classes of Alejandro Vidal Quiroga (1) | > | Mission progress status | > | Reputation |
|
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z |
| ||||
This 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'); |
Not enough user ratings |
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z |