mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
add PostgreSQL support
git-svn-id: file:///svn/phpbb/trunk@7984 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
b1d0fa5d35
commit
6aaf8d1ad7
1 changed files with 21 additions and 6 deletions
|
@ -1419,6 +1419,14 @@ if (version_compare($current_version, '3.0.RC4', '<='))
|
||||||
|
|
||||||
$no_updates = false;
|
$no_updates = false;
|
||||||
}
|
}
|
||||||
|
else if ($map_dbms == 'postgres')
|
||||||
|
{
|
||||||
|
foreach ($update_auto_increment as $auto_table_name => $auto_column_name)
|
||||||
|
{
|
||||||
|
$sql = "SELECT SETVAL('" . $auto_table_name . "_seq',(select case when max({$auto_column_name})>0 then max({$auto_column_name})+1 else 1 end from " . $auto_table_name . '));';
|
||||||
|
_sql($sql, $errored, $error_ary);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_write_result($no_updates, $errored, $error_ary);
|
_write_result($no_updates, $errored, $error_ary);
|
||||||
|
@ -1539,12 +1547,19 @@ function _sql($sql, &$errored, &$error_ary, $echo_dot = true)
|
||||||
|
|
||||||
$db->sql_return_on_error(true);
|
$db->sql_return_on_error(true);
|
||||||
|
|
||||||
$result = $db->sql_query($sql);
|
if (preg_match('/^\\s*SELECT/', $sql))
|
||||||
if ($db->sql_error_triggered)
|
|
||||||
{
|
{
|
||||||
$errored = true;
|
$result = $db->sql_query($sql);
|
||||||
$error_ary['sql'][] = $db->sql_error_sql;
|
if ($db->sql_error_triggered)
|
||||||
$error_ary['error_code'][] = $db->_sql_error();
|
{
|
||||||
|
$errored = true;
|
||||||
|
$error_ary['sql'][] = $db->sql_error_sql;
|
||||||
|
$error_ary['error_code'][] = $db->_sql_error();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var_dump($sql);
|
||||||
}
|
}
|
||||||
|
|
||||||
$db->sql_return_on_error(false);
|
$db->sql_return_on_error(false);
|
||||||
|
@ -1554,7 +1569,7 @@ function _sql($sql, &$errored, &$error_ary, $echo_dot = true)
|
||||||
echo ". \n";
|
echo ". \n";
|
||||||
flush();
|
flush();
|
||||||
}
|
}
|
||||||
|
if (preg_match('/^\\s*SELECT/', $sql))
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue