baka/phalcon-sqlsrv

There is no license information available for the latest version (2.0.1) of this package.

Sage IT Component for Phalcon - MS SQL Server (PDO) Adapter

2.0.1 2023-08-01 13:10 UTC

This package is auto-updated.

Last update: 2024-03-31 15:04:13 UTC


README

  • Phalcon 5.0+ support
  • PHP 8.1 support
$di->set('db', function() use ($config) {
	return new \Phalcon\Db\Adapter\Pdo\Sqlsrv(array(
		"host"         => $config->database->host,
		"username"     => $config->database->username,
		"password"     => $config->database->password,
		"dbname"       => $config->database->name
	));
});