Skip to content

Commit 056c6d6

Browse files
committed
Test formatting and add CREDITS
1 parent 0405300 commit 056c6d6

38 files changed

Lines changed: 23 additions & 83 deletions

CREDITS

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
Oracle (OCI) driver for PDO
1+
PDO extension for Oracle Database (PDO_OCI)
22
Wez Furlong
33
Michael Voříšek
44
Ashutosh Agrawal
5-
Niels Dossche
5+
Niels Dossche
6+
Christopher Jones
7+
Sharad Chandran R
8+
Oracle Corporation

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ The PDO_OCI extension can be linked with Oracle Client libraries from Oracle
3737
Database 11.2 or later. These libraries are found in your database
3838
installation, or in the free Oracle Instant Client packages from
3939
https://www.oracle.com/database/technologies/instant-client.html.
40+
4041
Install the 'Basic' or 'Basic Light' Instant Client package for running
4142
applications with this extension. If building from source, then also install
4243
the Instant Client SDK package.
@@ -46,4 +47,4 @@ linked with Instant Client 19c can connect to Oracle Database 11.2 onward. See
4647
Oracle's note "Oracle Client / Server Interoperability Support" (ID 207303.1)
4748
for details.
4849

49-
PHP is available from https://www.php.net/releases/
50+
PHP is available from https://www.php.net/releases/.

tests/bug41996.phpt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ var_dump(strlen($row[0]) > 0);
2020
?>
2121
--EXPECT--
2222
bool(true)
23-

tests/bug44301.phpt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,3 @@ $db = null;
2626
--EXPECTF--
2727
SQLSTATE[HY000]: General error: 942 OCIStmtExecute: ORA-00942: table or view %Sdoes not exist
2828
(%soci_statement.c:%d)
29-

tests/bug46274.phpt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ pdo_oci
77
<?php
88
require(getenv('PDO_TEST_DIR').'/pdo_test.inc');
99
PDOTest::skip();
10+
?>
1011
--FILE--
1112
<?php
1213
require_once(getenv('PDO_TEST_DIR').'/pdo_test.inc');
@@ -58,7 +59,7 @@ var_dump($res->fetch());
5859
?>
5960
--CLEAN--
6061
<?php
61-
require(getenv('PDO_TEST_DIR').'/pdo_test.inc');
62+
require_once(getenv('PDO_TEST_DIR').'/pdo_test.inc');
6263
$db = PDOTest::test_factory(getenv('PDO_OCI_TEST_DIR').'/common.phpt');
6364
$db->exec("begin
6465
execute immediate 'drop table test46274';

tests/bug46274_2.phpt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ fclose($row[0]);
6464
?>
6565
--CLEAN--
6666
<?php
67-
require(getenv('PDO_TEST_DIR').'/pdo_test.inc');
67+
require_once(getenv('PDO_TEST_DIR').'/pdo_test.inc');
6868
$db = PDOTest::test_factory(getenv('PDO_OCI_TEST_DIR').'/common.phpt');
6969
$db->exec("begin
7070
execute immediate 'drop table test46274_2';
@@ -89,4 +89,3 @@ array(2) {
8989
resource(%d) of type (stream)
9090
}
9191
string(0) ""
92-

tests/bug54379.phpt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var_dump($stmt->fetchAll(PDO::FETCH_ASSOC));
3131
?>
3232
--CLEAN--
3333
<?php
34-
require(getenv('PDO_TEST_DIR').'/pdo_test.inc');
34+
require_once(getenv('PDO_TEST_DIR').'/pdo_test.inc');
3535
$db = PDOTest::test_factory(getenv('PDO_OCI_TEST_DIR').'/common.phpt');
3636
$db->exec("begin
3737
execute immediate 'drop table test54379';
@@ -54,4 +54,3 @@ array(2) {
5454
string(60) "あいうえおかきくけこさしすせそたちつてと"
5555
}
5656
}
57-

tests/bug57702.phpt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,4 +195,3 @@ string(11) "row 1 col 2"
195195
string(11) "row 2 col 1"
196196
string(11) "row 2 col 2"
197197
done
198-

tests/bug60994.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ if ($string4 != $stream4 || $stream4 != stream_get_contents($row['DATA2'])) {
116116
?>
117117
--CLEAN--
118118
<?php
119-
require(getenv('PDO_TEST_DIR').'/pdo_test.inc');
119+
require_once(getenv('PDO_TEST_DIR').'/pdo_test.inc');
120120
$db = PDOTest::test_factory(getenv('PDO_OCI_TEST_DIR').'/common.phpt');
121121
$db->exec("begin
122122
execute immediate 'drop table pdo_oci_bug60994';

tests/bug_33707.phpt

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)