2017 © Pedro Peláez
 

library adodb

ADOdb library refactoring for PHP 5.3+ and PDO

image

dario1985/adodb

ADOdb library refactoring for PHP 5.3+ and PDO

  • Tuesday, March 4, 2014
  • by dario1985
  • Repository
  • 6 Watchers
  • 4 Stars
  • 8 Installations
  • C
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

ADOdb-PHP5.3 Build Status Coverage Status

This is an full refactored version of ADOdb library for PHP 5.3+. The idea came from the fact that ADOdb, a well known database abstraction library, is getting older and older and doesn't take advantage of PHP5.3+'s more advanced features., (*1)

This project was born with the hope to provide a more up-to-date and stronger engine. So far it has proven to be faster than original engine and it provides a compatibility layer to allow developers that have been using ADOdb for years to switch their application over to this version progressively., (*2)

This software is in development stage. Do not use it in production environments if you do not know what you are doing., (*3)

Drivers

Actually only support generic PDO* connections., (*4)

Caching

Various engines supported out-of-box:, (*5)

  1. Memory (per-request) useful for testing purposes
  2. APC
  3. File
  4. Libredis

Usage

The syntax is similar (quite identical) to ADOdb sintax:, (*6)

require 'ADOdb.php';
$db = NewADOConnection('mysql');
$db->connect($server, $user, $pwd, $db);

License

The MIT license, read it at http://www.opensource.org/licenses/mit-license.php, (*7)

Contributing

Feel free to fork and improve/enhance ADOdb in any way your want. If you feel that everybody will benefit from your changes, please open a pull request., (*8)

The Versions

04/03 2014

dev-master

9999999-dev http://github.com/dario1985/adodb

ADOdb library refactoring for PHP 5.3+ and PDO

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

database pdo adodb