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

Installs: 14 296

Dependents: 0

Suggesters: 0

Security: 0

Stars: 5

Watchers: 4

Forks: 19

pkg:composer/baka/phalcon-sqlsrv

2.0.1 2023-08-01 13:10 UTC

This package is auto-updated.

Last update: 2025-09-29 01:49:57 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
	));
});