1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

- Oracle can't handle IN clauses with more than 1000 elements (Bug #12449)

- Firebird can now work properly in PHP4


git-svn-id: file:///svn/phpbb/trunk@7767 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M
2007-06-16 13:49:49 +00:00
parent 27c082d99c
commit 367f5103d9
5 changed files with 69 additions and 36 deletions

View File

@@ -1711,7 +1711,7 @@ function phpbb_check_username_collisions()
break;
case 'oracle':
$create_sql = 'CREATE TABLE ' . $table_prefix . 'userconv
$create_sql = 'CREATE TABLE ' . $table_prefix . 'userconv (
user_id number(8) NOT NULL,
username_clean varchar2(255) DEFAULT \'\'
)';