PHP Classes
elePHPant
Icontem

Pseudo PostreSQL ADODB: PostgreSQL ADOdb Replacement

Recommend this page to a friend!
  Info   View files View files (2)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2002-11-07 (13 years ago) RSS 2.0 feedNot enough user ratingsTotal: 593 All time: 4,982 This week: 913Up
Version License Categories
pseudopostgres 1.0BSD LicenseDatabases
Description Author

Pseudo PostgreSQL ADODB is a PHP class designed as a drop-in replacement for ADOdb for PHP applications that do not need the full power of ADOdb, want to remain light and fast but want to remain compatible with ADOdb.

The API of PostgreSQL ADODB Emulation was designed to be compatible with ADOdb. I was able to remove ADOdb from my application framework and use this class instead.

Picture of Jason Sheets
Name: Jason Sheets <contact>
Classes: 4 packages by
Country: United States United States

Details
Pseudo PostreSQL ADODB README

Description:

Pseudo PostgreSQL ADODB is a PHP class designed as a drop-in replacement for ADOdb for PHP applications that do 
not need the full power of ADOdb, want to remain light and fast but want to remain comptable with ADOdb.

The API of PostgreSQL ADODB Emulation was designed to be comptable with ADOdb.  I was able to remove ADOdb from my
application framework and use this class instead, I noticed a 20% performance increase and the framework is smaller
because this class is just one file instead of many (of course your performance may vary from mine).

This script is distributed primarily for people with existing experience with ADOdb, if you need help you may contact
me though.

Example:

Following is an example of using PostgreSQL ADOdb Emulation, you may also reference the ADOdb documentation online at 
http://php.weblogs.com/ADODB

// include pg-adodb class
include_once('pg-adodb-class.php');

// create instance of the class
$db = new PG_ADODB();

// connect to the database
$db->Connect('database-hostname', 'username', 'password', 'database');

// execute a SQL query
$users_result = &$db->Execute("SELECT firstname,lastname FROM users ORDER BY lastname,firstname ASC");

// list each user
while ($users_row = $users_result->FetchRow()) {
   print $users_row['firstname'] . ' ' . $users_row['lastname'] . '<br>';
}

// free result set
$users_result->Close();

// free memory
unset($users_row, $users_result);



Author:

   Jason Sheets
   10/5/02
   

License:

This class is distributed under the BSD License.
   
Copyright (C) 2002 Jason Sheets <jsheets@shadonet.com>.
All rights reserved.

THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
   
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
   
3. Neither the name of the project nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
  Files folder image Files  
File Role Description
Accessible without login Plain text file pg-adodb-class.php Class Main Class File
Accessible without login Plain text file README.txt Doc. Readme File

 Version Control Unique User Downloads Download Rankings  
 0%
Total:593
This week:0
All time:4,982
This week:913Up