From: Marc Boeren Date: Wed, 13 Aug 2003 07:54:31 +0000 (+0000) Subject: Remove special-case from test for SQLite persistent connections. X-Git-Tag: RELEASE_0_7~688 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c0dcd3647b7dc3359a9c2c2f2c0177f0e3266f78;p=php Remove special-case from test for SQLite persistent connections. --- diff --git a/ext/dbx/tests/003.phpt b/ext/dbx/tests/003.phpt index 01c05f6e8c..9c0c3b0e86 100644 --- a/ext/dbx/tests/003.phpt +++ b/ext/dbx/tests/003.phpt @@ -49,18 +49,14 @@ else { } } -if ($module != DBX_SQLITE) { // skip persistent tests for sqlite until that bug is solved - $dlo = dbx_connect($module_name, $host, $database, $username, $password, DBX_PERSISTENT); if ($dlo!=0) { print('persistent connect using string ok'."\n"); - var_dump($dlo->handle); dbx_close($dlo); } $dlo = dbx_connect($module, $host, $database, $username, $password, DBX_PERSISTENT); if ($dlo!=0) { print('persistent connect using constant ok'."\n"); - var_dump($dlo->handle); dbx_close($dlo); } // sqlite is a special case as it will just create a db if it isn't found @@ -77,22 +73,20 @@ else { dbx_close($dlo); } } -$dlo = @dbx_connect($module, $host, $database, $nonexisting_username, $nonexisting_password, DBX_PERSISTENT); -if ($dlo==0) { - print('persistent connect with false username/password combi failed, so it\'s ok'."\n"); - } -else { - print_r($dlo); - dbx_close($dlo); +// sqlite is a special case as it doesn't use user/password restrictions +if ($module == DBX_SQLITE) { + print('persistent connect with false username/password combi failed, so it\'s ok'."\n"); } - -} // skip persistent tests for sqlite until that bug is solved else { - print('persistent connect using string ok'."\n"); - print('persistent connect using constant ok'."\n"); - print('persistent connect to non-existing database failed, so it\'s ok'."\n"); - print('persistent connect with false username/password combi failed, so it\'s ok'."\n"); -} + $dlo = @dbx_connect($module, $host, $database, $nonexisting_username, $nonexisting_password, DBX_PERSISTENT); + if ($dlo==0) { + print('persistent connect with false username/password combi failed, so it\'s ok'."\n"); + } + else { + print_r($dlo); + dbx_close($dlo); + } + } $dlo = @dbx_connect($module, $host, $database, $username, $password, DBX_PERSISTENT, "12many"); if ($dlo==0) { diff --git a/ext/dbx/tests/dbx_test.p b/ext/dbx/tests/dbx_test.p index 00fe1f2e37..5c98ca6dd0 100644 --- a/ext/dbx/tests/dbx_test.p +++ b/ext/dbx/tests/dbx_test.p @@ -63,7 +63,7 @@ switch ($connection) { case DBX_SQLITE: $module=DBX_SQLITE; $host=""; - $database="ext\\dbx\\tests\\dbx_test.sqlite.db"; + $database="dbx_test.sqlite.db"; $username=""; $password=""; $module_name="sqlite";