-
PHP&Databases; class allows you to perform a MySQL database management (Select, Delete, Insert, Update).
-
dbsource is a class meant to easily access different kinds of databases based on a common interface, taking the database connections to its cleanest, scalable maximum.
-
DBManager provides several classes that implement different aspects of the access using a central class to manage connections to the MySQL database server.The DBManager class keeps track of each database connection that is opened. It provides a function named getDB() that establishes the database conection when it is called for the first time, and returned a reference to an object ...
-
MyQuery is a simple MySQL query generator class to ease writing of complex queries with lots of WHERE and alike statements.
-
CM SQL is a simple package meant to execute SQL SELECT queries and format the query results. The select class can connect to the database server, execute SELECT queries and store the results in an array class variable. The database connection can be configured by an external script.A separate string formatting class can be use format the values returned as ...
-
DB 2 XML can be used to generate XML documents from information stored in a MySQL database table. The class executes a SQL query to retrieve the values of a list of fields of a given SQL table.Then DB 2 XML generates a XML document with the retrieved values as data of XML tags mapped from the original SQL query ...
-
mysqlc is a wrapper to access MySQL databases.It can create persistent or non persistent connections, execute queries, retrieve query results, retrieve MySQL server version, start and finish transactions.
-
Hybrid MySQL is a lightweight wrapper to access MySQL databases.Functions of Hybrid MySQL:- Open and close MySQL database connections- Execute SQL queries- Fetch the query results as array, associative arrays or objects- Get number of returned query result rows- Display failure error messages
-
swemc can connect of a MySQL database, execute SQL query and output the query results in HTML tables.Functions of swemc:- Execute select, update, insert and delete SQL queries- Output query results in HTML tables that can have their presentation customized with CSS.- Output HTML tables also customizable with CSS with the results of queries that retrieve single database table records- ...
-
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)
-
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.
-
WhoIs This can obtain information about a domain by querying a whois server.WhoIs This is looks at the domain name to determine its top level domain and then queries the whois server is responsible for that domain executing the whois program.A debugging class is also included in this package.
-
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.
-
my_sql is meant to interface with MySQL or SQLite databases.my_sql can be used to execute queries, show query execution time, to create execution time statistics, to check replicated queries, to export data dumps to file, to import data dumps from a file, etc..

