Zeile 72 | Zeile 72 |
---|
* @var resource */ public $current_link;
|
* @var resource */ public $current_link;
|
| /** * @var array */ public $connections = array();
|
/** * The database name.
|
/** * The database name.
|
* * @var string */
| * * @var string */
|
public $database;
/**
| public $database;
/**
|
Zeile 86 | Zeile 91 |
---|
* @var string */ public $explain;
|
* @var string */ public $explain;
|
|
|
/** * The current version of MySQL. *
| /** * The current version of MySQL. *
|
Zeile 110 | Zeile 115 |
---|
/** * The extension used to run the SQL database
|
/** * The extension used to run the SQL database
|
* * @var string */
| * * @var string */
|
public $engine = "mysql";
/**
| public $engine = "mysql";
/**
|
Zeile 138 | Zeile 143 |
---|
/** * Stores previous run query type: 1 => write; 0 => read
|
/** * Stores previous run query type: 1 => write; 0 => read
|
*
| *
|
* @var int */
| * @var int */
|
Zeile 178 | Zeile 183 |
---|
} }
|
} }
|
$this->db_encoding = $config['encoding'];
| if(isset($config['encoding'])) { $this->db_encoding = $config['encoding']; }
|
// Actually connect to the specified servers foreach(array('read', 'write') as $type)
| // Actually connect to the specified servers foreach(array('read', 'write') as $type)
|