1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-20 07:21:30 +02:00

- should fix some Firebird issues ( can't believe that nobody found this until now )

git-svn-id: file:///svn/phpbb/trunk@6954 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M
2007-02-01 03:13:08 +00:00
parent 2db7def46a
commit 9a685e7a48
7 changed files with 106 additions and 10 deletions

View File

@@ -167,6 +167,7 @@ class acp_database
// Get the table structure
if ($structure)
{
$sql_data .= "\n";
switch ($db->sql_layer)
{
case 'mysqli':
@@ -213,7 +214,18 @@ class acp_database
else
{
// We might wanna empty out all that junk :D
$sql_data .= (($db->sql_layer == 'sqlite') ? 'DELETE FROM ' : 'TRUNCATE TABLE ') . $table_name . ";\n";
switch ($db->sql_layer)
{
case 'sqlite':
case 'firebird':
$sql_data .= 'DELETE FROM ';
break;
default:
$sql_data .= 'TRUNCATE TABLE ';
break;
}
$sql_data .= $table_name . ";\n";
}
// Now write the data for the first time. :)
@@ -757,7 +769,7 @@ class acp_database
if ($retrieved_data)
{
$sql_data = "\nGO\n";
$sql_data = "GO\n";
if ($ident_set)
{
$sql_data .= "\nSET IDENTITY_INSERT $table_name OFF\nGO\n";