-
PHP-PGSQL class is a database management, accessing and searching tool.Functions of PHP-PGSQL:- connection --> Function connection()- query --> Function query($string)- num_rows --> Function nums($string="",$qid="")- object --> Function objects($string="",$qid="")- insert --> Function insert($tb_name,$cols,$val,$astriction)- update --> Function update($tb_name,$string,$astriction)- delete --> Function del($tb_name,$astriction)
-
memDB is a memory based database manager class that can also dump the information either in a file or a string that useful when you store a memDB in another database.
-
Create dumps of every kind of variables, including objects.
-
rs2csv can be used to convert a result set which has been generated by PHP's built-in MySQL functions to a comma separated values (CSV) file.
-
MySQL SP is meant to provide an emulation of stored procedures for MySQL.MySQL SP uses template files stored on the database client side that contain multiple SQL statements with special marks that identify placeholders that are replaced by procedure arguments when they are executed.The result of the execution of procedure is an array containing either the handles of the result ...
-
Database conversion is meant to process SQL code with syntax that is specific to certain databases and convert it to SQL code that is database neutral.The goal of Database conversion is to help avoiding the use of SQL code that is not compatible with all the supported databases.Currently Database conversion supports converting SQL code specific to Oracle, MySQL, Microsoft SQL ...
-
MySQLi Database is a wrapper around the MySQLi extension to access MySQL databases. The package is composed of two classes: one extends the MySQLi class to execute several types of database access functions and another extends the mysqli_result class to manipulate result sets.Features of MySQLi Database:- Optional exception throwing on connection or query errors- All the result fetching functions use ...
-
QueryPrint class allows you to print the result of a database query as an HTML table. A separate module defines the printing. It also allows the result to be displayed on multiple pages.
-
ResultCache is a class used to cache output of a function in disk files.This class is good for improving the performance of scripts that output the results of slow database queries. It can be used for caching data generated from other sources besides database query results.On first call of the class, the function is executed and the returned data to ...
-
vinCache is a class to cache pages whole site.It is a class that stores the visited pages during a specified period before its refreshes the cache. Until then the processed HTML pages are returned to the browser.vinCache may cache the pages in files or in SQL database rows.
-
MySQL_DB_Connect is a database connection handler making use of PHP and MySQL. Support for transactional tables like InnoDB tables is built in, it will, however, still work with non-transactional tables like MyISAM tables.
-
SmashDB is database abstraction class with suppport for several types of RDBMS in a single class: MySQL, PostgreSQL, mSQL, Microsoft SQL Server, Interbase, Sybase, and Oracle.
-
Interbase class that makes it easier to work with blob fields and that lets you access fields by name OR index. Originally created to "assist" in a course in php programming at KTH Syd - Campus Telge.Better documentation of it is needed but the code "speaks" for itself until the documentation becomes available.
-
AEDEDL class handle database queries automatically: Add, Edit, Delete, Enable, Disable, Listing.
-
Joe Celko Nested Sets is meant to manage tree database structure using Jeo Celko's nested sets approach.You can add node with 7 queries, delete a node with subnodes with 4 queries and move node with 11 queries.The number of queries per action does not depend on the number of sub-nodes, so it is a scalable solution.

