version 0.2 beta nibiru framework, added onclick to the navbar json configuration, added a new dispatcher class that can handle actions as well, removed the dirty method calls fro the constructor $this->pageAction() and the navbar call, added ODBC support, and a postgress class. Overall improved the core functions of the framework.
This commit is contained in:
16
core/c/mysql.php
Normal file → Executable file
16
core/c/mysql.php
Normal file → Executable file
@@ -14,15 +14,15 @@ class Mysql implements IMysql
|
||||
|
||||
private static $_instance;
|
||||
|
||||
private $_dsn = self::PLACE_DSN;
|
||||
private $_username = self::PLACE_USERNAME;
|
||||
private $_password = self::PLACE_PASSWORD;
|
||||
private $_diver = self::PLACE_DRIVER;
|
||||
private $_hostname = self::PLACE_HOSTNAME;
|
||||
private $_dbname = self::PLACE_DATABASE;
|
||||
private $_port = self::PLACE_PORT;
|
||||
protected $_dsn = self::PLACE_DSN;
|
||||
protected $_username = self::PLACE_USERNAME;
|
||||
protected $_password = self::PLACE_PASSWORD;
|
||||
protected $_diver = self::PLACE_DRIVER;
|
||||
protected $_hostname = self::PLACE_HOSTNAME;
|
||||
protected $_dbname = self::PLACE_DATABASE;
|
||||
protected $_port = self::PLACE_PORT;
|
||||
|
||||
private $_conn = self::PLACE_CONNECTION;
|
||||
protected $_conn = self::PLACE_CONNECTION;
|
||||
|
||||
protected function __construct( )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user