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

db tools can now drop tables

git-svn-id: file:///svn/phpbb/trunk@8320 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M
2008-01-11 06:17:46 +00:00
parent cbb4db46b2
commit 24a359e9f5
2 changed files with 65 additions and 1 deletions

View File

@@ -1805,7 +1805,7 @@ class oracle_extractor extends base_extractor
FROM USER_DEPENDENCIES A, USER_TRIGGERS B
WHERE A.REFERENCED_TYPE = 'SEQUENCE'
AND A.NAME = B.TRIGGER_NAME
AND B. TABLE_NAME = '{$table_name}'";
AND B.TABLE_NAME = '{$table_name}'";
$result = $db->sql_query($sql);
while ($row = $db->sql_fetchrow($result))
{