Skip to content

Commit 7904827

Browse files
committed
use "mysql" host instead
1 parent 9c2b696 commit 7904827

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ext/oci8/tests/extauth_01.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ var_dump($c);
6767

6868
echo "Test 7\n";
6969

70-
$c = oci_connect('/', '', 'anything', null, OCI_CRED_EXT);
70+
$c = oci_connect('/', '', 'mysql', null, OCI_CRED_EXT);
7171
if (!$c) {
7272
$m = oci_error();
7373
var_dump($m);
@@ -76,7 +76,7 @@ var_dump($c);
7676

7777
echo "Test 8\n";
7878

79-
$c = oci_connect('/', null, 'anything', null, OCI_CRED_EXT);
79+
$c = oci_connect('/', null, 'mysql', null, OCI_CRED_EXT);
8080
if (!$c) {
8181
$m = oci_error();
8282
var_dump($m);

ext/oci8/tests/extauth_02.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ var_dump($c);
6767

6868
echo "Test 7\n";
6969

70-
$c = oci_new_connect('/', '', 'anything', null, OCI_CRED_EXT);
70+
$c = oci_new_connect('/', '', 'mysql', null, OCI_CRED_EXT);
7171
if (!$c) {
7272
$m = oci_error();
7373
var_dump($m);
@@ -76,7 +76,7 @@ var_dump($c);
7676

7777
echo "Test 8\n";
7878

79-
$c = oci_new_connect('/', null, 'anything', null, OCI_CRED_EXT);
79+
$c = oci_new_connect('/', null, 'mysql', null, OCI_CRED_EXT);
8080
if (!$c) {
8181
$m = oci_error();
8282
var_dump($m);

ext/oci8/tests/extauth_03.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ var_dump($c);
6767

6868
echo "Test 7\n";
6969

70-
$c = oci_pconnect('/', '', 'anything', null, OCI_CRED_EXT);
70+
$c = oci_pconnect('/', '', 'mysql', null, OCI_CRED_EXT);
7171
if (!$c) {
7272
$m = oci_error();
7373
var_dump($m);
@@ -76,7 +76,7 @@ var_dump($c);
7676

7777
echo "Test 8\n";
7878

79-
$c = oci_pconnect('/', null, 'anything', null, OCI_CRED_EXT);
79+
$c = oci_pconnect('/', null, 'mysql', null, OCI_CRED_EXT);
8080
if (!$c) {
8181
$m = oci_error();
8282
var_dump($m);

0 commit comments

Comments
 (0)