Download the PHP package systemico/conector_db without Composer
On this page you can find all versions of the php package systemico/conector_db. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download systemico/conector_db
More information about systemico/conector_db
Files in systemico/conector_db
Download systemico/conector_db
More information about systemico/conector_db
Files in systemico/conector_db
Vendor systemico
Package conector_db
Short Description Singleton pattern to connect database Mysql, PostgreSQL, Oracle, SQL Server, and others.
License Apache-2.0
Package conector_db
Short Description Singleton pattern to connect database Mysql, PostgreSQL, Oracle, SQL Server, and others.
License Apache-2.0
Please rate this library. Is it a good library?
Informations about the package conector_db
conector-db
Singleton pattern to connect database Mysql, Postgrs, Oracle, SQL Server, and others.
Settings.php example
class Settings{
public static $DB_HOST="";
public static $DB_USER="";
public static $DB_PASSWORD="";
public static $DB_NAME="";
}
Connect example
Example to run a new Database connection.
require_once dirname(__FILE__)."/../vendor/autoload.php";
require_once dirname(__FILE__)."/Settings.php";
use conector_db\ConectorDB;
$conector= ConectorDB::get_conector(Settings::$DB_HOST,Settings::$DB_USER, Settings::$DB_PASSWORD, Settings::$DB_NAME);
print_r($conector->select("show tables"));
All versions of conector_db with dependencies
PHP Build Version
Package Version
The package systemico/conector_db contains the following files
Loading the files please wait ....