Database-Connection Support forum database-connection Database access abstraction layer This class implements a database access abstraction layer. It provides a single interface to access MySQL using the regular mysql extension, or the MySQLi, or any database supported by the PDO extension. The ...
Database Connection Classes Support forum database_connection Abstract the access to SQL databases This package implements an abstraction of the access to SQL databases. It provides an abstract interface for establishing connections, executing SQL queries, managing transactions, retrieving the last ...
Database Connection Support forum dbconn Simple MySQL database access wrapper This class is a very simple MySQL database access wrapper. It can establish persistent and non-persistent connections, set the current database, execute an SQL query and return its result set resource handle, free the ...
... MySQL database connections using PDO This is a simple class that can be used to manage MySQL database connections using PDO. It establishes a database connection to a MySQL database. It automatically sets the connection to use buffered queries. The class can also execute SQL queries that are automatically ...
Small MySQL Connection Support forum mysqlconnection MySQL database access wrapper This class is a very simple wrapper to access to MySQL databases. It can: - Establish database connections - Execute manipulation queries and return the number of affected table rows - Execute an SQL SELECT queries ...
MySQL connection and query Support forum query Connect and query MySQL databases This package can be used to connect and query MySQL databases. There is one simple class for establishing MySQL database connections. There is another simple class for executing queries and retrieving the results into ...
This class can execute database queries with PDO prepare statements. It can establish a connection to a given database using PDO. The class can execute SELECT, INSERT and UPDATE queries by taking the SQL query string and a list of argument values that will be used to set as parameters of the prepared ...
Easy Connection Support forum easy-connection Simple MySQL database access wrapper This class is a simple MySQL database access wrapper. It can establish a connection to a given MySQL server, executes a query and returns the results as arrays or objects. easy_connection class Site Meter
... It can setup a PDO object to access a database of a given type, host and database name. The class also takes the user name, password and whether the database connection to establish should be persistent. User example Factory Connections Site Meter
Connection Manager Support forum connectionmanager Database connection abstraction The ConnectionManager class is an example of providing abstraction to database connectivity using the factory design pattern. The factory method in the ConnectionManagerFactory class returns the correct ConnectionManager ...