Zeile 72 | Zeile 72 |
---|
* @var resource */ public $current_link;
|
* @var resource */ public $current_link;
|
| /** * @var array */ public $connections = array();
/** * The database name. * * @var string */ public $database;
|
/** * Explanation of a query.
| /** * Explanation of a query.
|
Zeile 184 | Zeile 196 |
---|
if(array_key_exists('hostname', $connections[$type])) { $details = $connections[$type];
|
if(array_key_exists('hostname', $connections[$type])) { $details = $connections[$type];
|
unset($connections);
| unset($connections[$type]);
|
$connections[$type][] = $details; }
| $connections[$type][] = $details; }
|
Zeile 259 | Zeile 271 |
---|
*/ function select_db($database) {
|
*/ function select_db($database) {
|
| $this->database = $database;
|
$this->current_link = &$this->read_link; $read_success = @mysql_select_db($database, $this->read_link) or $this->error("[READ] Unable to select database", $this->read_link); if($this->write_link)
| $this->current_link = &$this->read_link; $read_success = @mysql_select_db($database, $this->read_link) or $this->error("[READ] Unable to select database", $this->read_link); if($this->write_link)
|
Zeile 476 | Zeile 490 |
---|
if($row === false) { $array = $this->fetch_array($query);
|
if($row === false) { $array = $this->fetch_array($query);
|
return $array[$field];
| if($array !== null) { return $array[$field]; } return null;
|
} else {
| } else {
|
Zeile 636 | Zeile 654 |
---|
{ if($prefix) {
|
{ if($prefix) {
|
$query = $this->query(" SELECT `TABLE_NAME` FROM INFORMATION_SCHEMA.TABLES WHERE `TABLE_SCHEMA` = '$database' AND `TABLE_TYPE` = 'BASE TABLE' AND `TABLE_NAME` LIKE '".$this->escape_string($prefix)."%' ");
| if(version_compare($this->get_version(), '5.0.2', '>=')) { $query = $this->query("SHOW FULL TABLES FROM `$database` WHERE table_type = 'BASE TABLE' AND `Tables_in_$database` LIKE '".$this->escape_string($prefix)."%'"); } else { $query = $this->query("SHOW TABLES FROM `$database` LIKE '".$this->escape_string($prefix)."%'"); }
|
} else
|
} else
|
{ $query = $this->query(" SELECT `TABLE_NAME` FROM INFORMATION_SCHEMA.TABLES WHERE `TABLE_SCHEMA` = '$database' AND `TABLE_TYPE` = 'BASE TABLE' ");
| { if(version_compare($this->get_version(), '5.0.2', '>=')) { $query = $this->query("SHOW FULL TABLES FROM `$database` WHERE table_type = 'BASE TABLE'"); } else { $query = $this->query("SHOW TABLES FROM `$database`"); }
|
}
$tables = array(); while(list($table) = mysql_fetch_array($query)) { $tables[] = $table;
|
}
$tables = array(); while(list($table) = mysql_fetch_array($query)) { $tables[] = $table;
|
}
| }
|
return $tables; }
/** * Check if a table exists in a database.
|
return $tables; }
/** * Check if a table exists in a database.
|
* * @param string $table The table name. * @return boolean True when exists, false if not. */
| * * @param string $table The table name. * @return boolean True when exists, false if not. */
|
function table_exists($table) { // Execute on master server to ensure if we've just created a table that we get the correct result
|
function table_exists($table) { // Execute on master server to ensure if we've just created a table that we get the correct result
|
$query = $this->write_query(" SELECT `TABLE_NAME` FROM INFORMATION_SCHEMA.TABLES WHERE `TABLE_TYPE` = 'BASE TABLE' AND `TABLE_NAME` LIKE '{$this->table_prefix}$table' "); $exists = $this->num_rows($query); if($exists > 0) { return true; }
| if(version_compare($this->get_version(), '5.0.2', '>=')) { $query = $this->query("SHOW FULL TABLES FROM `".$this->database."` WHERE table_type = 'BASE TABLE' AND `Tables_in_".$this->database."` = '{$this->table_prefix}$table'"); } else { $query = $this->query("SHOW TABLES LIKE '{$this->table_prefix}$table'"); }
$exists = $this->num_rows($query); if($exists > 0) { return true; }
|
else { return false;
| else { return false;
|
Zeile 686 | Zeile 715 |
---|
/** * Check if a field exists in a database.
|
/** * Check if a field exists in a database.
|
*
| *
|
* @param string $field The field name. * @param string $table The table name. * @return boolean True when exists, false if not.
| * @param string $field The field name. * @param string $table The table name. * @return boolean True when exists, false if not.
|
Zeile 706 | Zeile 735 |
---|
else { return false;
|
else { return false;
|
}
| }
|
}
/**
| }
/**
|
Zeile 725 | Zeile 754 |
---|
else { $shutdown_queries[] = $query;
|
else { $shutdown_queries[] = $query;
|
}
| }
|
} /** * Performs a simple select query.
| } /** * Performs a simple select query.
|
Zeile 778 | Zeile 807 |
---|
* @return int The insert ID if available */ function insert_query($table, $array)
|
* @return int The insert ID if available */ function insert_query($table, $array)
|
{ global $mybb;
if(!is_array($array)) { return false; }
| { global $mybb;
if(!is_array($array)) { return false; }
|
foreach($array as $field => $value) {
| foreach($array as $field => $value) {
|
Zeile 821 | Zeile 850 |
---|
* @return void */ function insert_query_multiple($table, $array)
|
* @return void */ function insert_query_multiple($table, $array)
|
{ global $mybb;
| { global $mybb;
|
if(!is_array($array)) { return;
| if(!is_array($array)) { return;
|
Zeile 883 | Zeile 912 |
---|
}
$comma = "";
|
}
$comma = "";
|
$query = ""; $quote = "'";
| $query = ""; $quote = "'";
|
if($no_quote == true) {
| if($no_quote == true) {
|
Zeile 938 | Zeile 967 |
---|
if(is_int($value)) { $quoted = $value;
|
if(is_int($value)) { $quoted = $value;
|
} else { $quoted = $quote . $value . $quote; }
| } else { $quoted = $quote . $value . $quote; }
|
return $quoted; }
| return $quoted; }
|
Zeile 961 | Zeile 990 |
---|
if(!empty($where)) { $query .= " WHERE $where";
|
if(!empty($where)) { $query .= " WHERE $where";
|
}
| }
|
if(!empty($limit)) { $query .= " LIMIT $limit";
| if(!empty($limit)) { $query .= " LIMIT $limit";
|
Zeile 977 | Zeile 1006 |
---|
/** * Escape a string according to the MySQL escape format.
|
/** * Escape a string according to the MySQL escape format.
|
* * @param string $string The string to be escaped. * @return string The escaped string. */
| * * @param string $string The string to be escaped. * @return string The escaped string. */
|
function escape_string($string) { if($this->db_encoding == 'utf8')
| function escape_string($string) { if($this->db_encoding == 'utf8')
|
Zeile 988 | Zeile 1017 |
---|
$string = validate_utf8_string($string, false); } elseif($this->db_encoding == 'utf8mb4')
|
$string = validate_utf8_string($string, false); } elseif($this->db_encoding == 'utf8mb4')
|
{
| {
|
$string = validate_utf8_string($string);
|
$string = validate_utf8_string($string);
|
}
| }
|
if(function_exists("mysql_real_escape_string") && $this->read_link) {
| if(function_exists("mysql_real_escape_string") && $this->read_link) {
|
Zeile 999 | Zeile 1028 |
---|
else { $string = addslashes($string);
|
else { $string = addslashes($string);
|
}
| }
|
return $string; }
| return $string; }
|
Zeile 1022 | Zeile 1051 |
---|
*/ function escape_string_like($string) {
|
*/ function escape_string_like($string) {
|
return $this->escape_string(str_replace(array('%', '_') , array('\\%' , '\\_') , $string));
| return $this->escape_string(str_replace(array('\\', '%', '_') , array('\\\\', '\\%' , '\\_') , $string));
|
}
/**
| }
/**
|
Zeile 1037 | Zeile 1066 |
---|
return $this->version; }
|
return $this->version; }
|
$version = @mysql_get_server_info(); if(!$version) { $query = $this->query("SELECT VERSION() as version"); $ver = $this->fetch_array($query); $version = $ver['version']; }
| $query = $this->query("SELECT VERSION() as version"); $ver = $this->fetch_array($query); $version = $ver['version'];
|
if($version) {
| if($version) {
|
Zeile 1209 | Zeile 1234 |
---|
/** * Creates a fulltext index on the specified column in the specified table with optional index name.
|
/** * Creates a fulltext index on the specified column in the specified table with optional index name.
|
*
| *
|
* @param string $table The name of the table. * @param string $column Name of the column to be indexed. * @param string $name The index name, optional.
| * @param string $table The name of the table. * @param string $column Name of the column to be indexed. * @param string $name The index name, optional.
|
Zeile 1229 | Zeile 1254 |
---|
* @param string $name The name of the index. */ function drop_index($table, $name)
|
* @param string $name The name of the index. */ function drop_index($table, $name)
|
{
| {
|
$this->write_query(" ALTER TABLE {$this->table_prefix}$table DROP INDEX $name
| $this->write_query(" ALTER TABLE {$this->table_prefix}$table DROP INDEX $name
|
Zeile 1244 | Zeile 1269 |
---|
* @param boolean $table_prefix use table prefix */ function drop_table($table, $hard=false, $table_prefix=true)
|
* @param boolean $table_prefix use table prefix */ function drop_table($table, $hard=false, $table_prefix=true)
|
{ if($table_prefix == false) { $table_prefix = ""; } else
| { if($table_prefix == false) { $table_prefix = ""; } else
|
{ $table_prefix = $this->table_prefix; }
| { $table_prefix = $this->table_prefix; }
|
Zeile 1288 | Zeile 1313 |
---|
/** * Replace contents of table with values
|
/** * Replace contents of table with values
|
* * @param string $table The table
| * * @param string $table The table
|
* @param array $replacements The replacements
|
* @param array $replacements The replacements
|
| * @param string|array $default_field The default field(s) * @param boolean $insert_id Whether or not to return an insert id. True by default
|
* @return resource|bool */
|
* @return resource|bool */
|
function replace_query($table, $replacements=array())
| function replace_query($table, $replacements=array(), $default_field="", $insert_id=true)
|
{ global $mybb;
| { global $mybb;
|
Zeile 1309 | Zeile 1336 |
---|
} $values .= $comma."`".$column."`=".$value;
|
} $values .= $comma."`".$column."`=".$value;
|
} else
| } else
|
{ $values .= $comma."`".$column."`=".$this->quote_val($value); }
$comma = ',';
|
{ $values .= $comma."`".$column."`=".$this->quote_val($value); }
$comma = ',';
|
}
| }
|
if(empty($replacements)) {
| if(empty($replacements)) {
|
Zeile 1328 | Zeile 1355 |
---|
/** * Drops a column
|
/** * Drops a column
|
* * @param string $table The table * @param string $column The column name * @return resource */
| * * @param string $table The table * @param string $column The column name * @return resource */
|
function drop_column($table, $column)
|
function drop_column($table, $column)
|
{ return $this->write_query("ALTER TABLE {$this->table_prefix}{$table} DROP {$column}"); }
| { $column = trim($column, '`');
return $this->write_query("ALTER TABLE {$this->table_prefix}{$table} DROP `{$column}`"); }
|
/** * Adds a column
| /** * Adds a column
|
Zeile 1348 | Zeile 1377 |
---|
*/ function add_column($table, $column, $definition) {
|
*/ function add_column($table, $column, $definition) {
|
return $this->write_query("ALTER TABLE {$this->table_prefix}{$table} ADD {$column} {$definition}");
| $column = trim($column, '`');
return $this->write_query("ALTER TABLE {$this->table_prefix}{$table} ADD `{$column}` {$definition}");
|
}
/**
| }
/**
|
Zeile 1357 | Zeile 1388 |
---|
* @param string $table The table * @param string $column The column name * @param string $new_definition the new column definition
|
* @param string $table The table * @param string $column The column name * @param string $new_definition the new column definition
|
* @return resource */ function modify_column($table, $column, $new_definition)
| * @param boolean|string $new_not_null Whether to "drop" or "set" the NOT NULL attribute (no change if false) * @param boolean|string $new_default_value The new default value, or false to drop the attribute * @return bool Returns true if all queries are executed successfully or false if one of them failed */ function modify_column($table, $column, $new_definition, $new_not_null=false, $new_default_value=false)
|
{
|
{
|
return $this->write_query("ALTER TABLE {$this->table_prefix}{$table} MODIFY {$column} {$new_definition}");
| $column = trim($column, '`');
if($new_not_null !== false) { if(strtolower($new_not_null) == "set") { $not_null = "NOT NULL"; } else { $not_null = "NULL"; } } else { $not_null = ''; }
if($new_default_value !== false) { $default = "DEFAULT ".$new_default_value; } else { $default = ''; }
return (bool)$this->write_query("ALTER TABLE {$this->table_prefix}{$table} MODIFY `{$column}` {$new_definition} {$not_null} {$default}");
|
}
/**
| }
/**
|
Zeile 1371 | Zeile 1431 |
---|
* @param string $old_column The old column name * @param string $new_column the new column name * @param string $new_definition the new column definition
|
* @param string $old_column The old column name * @param string $new_column the new column name * @param string $new_definition the new column definition
|
* @return resource
| * @param boolean|string $new_not_null Whether to "drop" or "set" the NOT NULL attribute (no change if false) * @param boolean|string $new_default_value The new default value, or false to drop the attribute * @return bool Returns true if all queries are executed successfully
|
*/
|
*/
|
function rename_column($table, $old_column, $new_column, $new_definition)
| function rename_column($table, $old_column, $new_column, $new_definition, $new_not_null=false, $new_default_value=false)
|
{
|
{
|
return $this->write_query("ALTER TABLE {$this->table_prefix}{$table} CHANGE {$old_column} {$new_column} {$new_definition}");
| $old_column = trim($old_column, '`'); $new_column = trim($new_column, '`');
if($new_not_null !== false) { if(strtolower($new_not_null) == "set") { $not_null = "NOT NULL"; } else { $not_null = "NULL"; } } else { $not_null = ''; }
if($new_default_value !== false) { $default = "DEFAULT ".$new_default_value; } else { $default = ''; }
return (bool)$this->write_query("ALTER TABLE {$this->table_prefix}{$table} CHANGE `{$old_column}` `{$new_column}` {$new_definition} {$not_null} {$default}");
|
}
/**
| }
/**
|
Zeile 1457 | Zeile 1547 |
---|
'cp1251' => 'Windows Cyrillic', 'cp1256' => 'Windows Arabic', 'cp1257' => 'Windows Baltic',
|
'cp1251' => 'Windows Cyrillic', 'cp1256' => 'Windows Arabic', 'cp1257' => 'Windows Baltic',
|
'binary' => 'Binary pseudo charset',
| |
'geostd8' => 'GEOSTD8 Georgian', 'cp932' => 'SJIS for Windows Japanese', 'eucjpms' => 'UJIS for Windows Japanese',
| 'geostd8' => 'GEOSTD8 Georgian', 'cp932' => 'SJIS for Windows Japanese', 'eucjpms' => 'UJIS for Windows Japanese',
|
Zeile 1506 | Zeile 1595 |
---|
'cp1251' => 'cp1251_general_ci', 'cp1256' => 'cp1256_general_ci', 'cp1257' => 'cp1257_general_ci',
|
'cp1251' => 'cp1251_general_ci', 'cp1256' => 'cp1256_general_ci', 'cp1257' => 'cp1257_general_ci',
|
'binary' => 'binary',
| |
'geostd8' => 'geostd8_general_ci', 'cp932' => 'cp932_japanese_ci', 'eucjpms' => 'eucjpms_japanese_ci',
| 'geostd8' => 'geostd8_general_ci', 'cp932' => 'cp932_japanese_ci', 'eucjpms' => 'eucjpms_japanese_ci',
|