ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:userguide:oracle_tutorial

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
userguide:oracle_tutorial [2015/12/26 18:18] mnewnhamuserguide:oracle_tutorial [2015/12/27 15:20] mnewnham
Line 24: Line 24:
 First we have the C extensions which provide low-level access to Oracle functionality. These C extensions are precompiled into PHP, or linked in dynamically when the web server starts up. Just in case you need it, here's a guide to installing Oracle and PHP on Linux. First we have the C extensions which provide low-level access to Oracle functionality. These C extensions are precompiled into PHP, or linked in dynamically when the web server starts up. Just in case you need it, here's a guide to installing Oracle and PHP on Linux.
  
-Oracle extension Designed for Oracle 7 or earlier. This is obsolete. +===== Oracle extension ===== 
-Oci8 extension Despite it's name, which implies it is only for Oracle 8i, this is the standard method for accessing databases running Oracle 8i, 9i or 10g (and later).+Designed for Oracle 7 or earlier. This is obsolete. 
 +===== Oci8 extension =====  
 + 
 +Despite it's name, which implies it is only for Oracle 8i, this is the standard method for accessing databases running Oracle 8i, 9i or 10g (and later). 
 Here is an example of using the oci8 extension to query the emp table of the scott schema with bind parameters: Here is an example of using the oci8 extension to query the emp table of the scott schema with bind parameters:
 +<code php>
  
 $conn = OCILogon("scott","tiger", $tnsName); $conn = OCILogon("scott","tiger", $tnsName);
Line 38: Line 43:
  echo "<hr>";  echo "<hr>";
 } }
 +</code>
 +
 This generates the following output: This generates the following output:
  
-Array ( [0] => 7902 [1] => FORD [2] => ANALYST [3] => 7566 [4] => 03/DEC/81 [5] => 3000 [7] => 20 ) +  Array ( [0] => 7902 [1] => FORD [2] => ANALYST [3] => 7566 [4] => 03/DEC/81 [5] => 3000 [7] => 20 ) 
-Array ( [0] => 7934 [1] => MILLER [2] => CLERK [3] => 7782 [4] => 23/JAN/82 [5] => 1300 [7] => 10 )+  Array ( [0] => 7934 [1] => MILLER [2] => CLERK [3] => 7782 [4] => 23/JAN/82 [5] => 1300 [7] => 10 ) 
 +  
 We also have many higher level PHP libraries that allow you to simplify the above code. The most popular are PEAR DB and ADOdb. Here are some of the differences between these libraries: We also have many higher level PHP libraries that allow you to simplify the above code. The most popular are PEAR DB and ADOdb. Here are some of the differences between these libraries:
  
-Feature PEAR DB 1.6 ADOdb 4.52 +^Feature^PEAR DB 1.6^ADOdb| 
-General Style Simple, easy to use. Lacks Oracle specific functionality. Has multi-tier design. Simple high-level design for beginners, and also lower-level advanced Oracle functionality. +|General Style|Simple, easy to use. Lacks Oracle specific functionality.|Has multi-tier design. Simple high-level design for beginners, and also lower-level advanced Oracle functionality.| 
-Support for Prepare Yes, but only on one statement, as the last prepare overwrites previous prepares. Yes (multiple simultaneous prepare's allowed) +|Support for Prepare|Yes, but only on one statement, as the last prepare overwrites previous prepares.|Yes (multiple simultaneous prepare's allowed)| 
-Support for LOBs No Yes, using update semantics +|Support for LOBs|No|Yes, using update semantics| 
-Support for REF Cursors No Yes +|Support for REF Cursors|No|Yes| 
-Support for IN Parameters Yes Yes +|Support for IN Parameters|Yes|Yes| 
-Support for OUT Parameters No Yes +|Support for OUT Parameters|No|Yes| 
-Schema creation using XML No Yes, including ability to define tablespaces and constraints +|Schema creation using XML|No|Yes, including ability to define tablespaces and constraints| 
-Provides database portability features No Yes, has some ability to abstract features that differ between databases such as dates, bind parameters, and data types. +|Provides database portability features|No|Yes, has some ability to abstract features that differ between databases such as dates, bind parameters, and data types.| 
-Performance monitoring and tracing No Yes. SQL can be traced and linked to web page it was executed on. Explain plan support included. +|Performance monitoring and tracing|No|Yes. SQL can be traced and linked to web page it was executed on. Explain plan support included.| 
-Recordset caching for frequently used queries No Yes. Provides great speedups for SQL involving complex where, group-by and order-by clauses. +|Recordset caching for frequently used queries|No|Yes. Provides great speedups for SQL involving complex where, group-by and order-by clauses.| 
-Popularity Yes, part of PEAR release Yes, many open source projects are using this software, including PostNuke, Xaraya, Mambo, Tiki Wiki. +|Speed|Medium speed.|Very high speed. Fastest database abstraction library available for PHP. Benchmarks are available.| 
-Speed Medium speed. Very high speed. Fastest database abstraction library available for PHP. Benchmarks are available. +|High Speed Extension available| No|Yes. You can install the optional ADOdb extension, which reimplements the most frequently used parts of ADOdb as fast C code. Note that the source code version of ADOdb runs just fine without this extension, and only makes use of the extension if detected.
-High Speed Extension available No Yes. You can install the optional ADOdb extension, which reimplements the most frequently used parts of ADOdb as fast C code. Note that the source code version of ADOdb runs just fine without this extension, and only makes use of the extension if detected.+
 PEAR DB is good enough for simple web apps. But if you need more power, you can see ADOdb offers more sophisticated functionality. The rest of this article will concentrate on using ADOdb with Oracle. You can find out more about connecting to Oracle later in this guide. PEAR DB is good enough for simple web apps. But if you need more power, you can see ADOdb offers more sophisticated functionality. The rest of this article will concentrate on using ADOdb with Oracle. You can find out more about connecting to Oracle later in this guide.
  
Line 115: Line 123:
 } }
  
-</coe>+</code>
  
 And if you are interested in having the data returned in a 2-dimensional array, you can use: And if you are interested in having the data returned in a 2-dimensional array, you can use:
  
-$arr = $db->GetArray("select * from emp where empno>:emp", array('emp' => 7900));+  $arr = $db->GetArray("select * from emp where empno>:emp", array('emp' => 7900));
 Now to obtain only the first row as an array: Now to obtain only the first row as an array:
  
-$arr = $db->GetRow("select * from emp where empno=:emp", array('emp' => 7900));+  $arr = $db->GetRow("select * from emp where empno=:emp", array('emp' => 7900));
 Or to retrieve only the first field of the first row: Or to retrieve only the first field of the first row:
  
-$arr = $db->GetOne("select ename from emp where empno=:emp", array('emp' => 7900));+  $arr = $db->GetOne("select ename from emp where empno=:emp", array('emp' => 7900));
 For easy pagination support, we provide the SelectLimit function. The following will perform a select query, limiting it to 100 rows, starting from row 201 (row 1 being the 1st row): For easy pagination support, we provide the SelectLimit function. The following will perform a select query, limiting it to 100 rows, starting from row 201 (row 1 being the 1st row):
  
-$offset = 200; $limitrows = 100; +  $offset = 200; $limitrows = 100; 
-$rs = $db->SelectLimit('select * from table', $limitrows, $offset);+  $rs = $db->SelectLimit('select * from table', $limitrows, $offset); 
 The $offset parameter is optional. The $offset parameter is optional.
- 
-===== Array Fetch Mode ===== 
- 
-When data is being returned in an array, you can choose the type of array the data is returned in. 
- 
-Numeric indexes - use $connection->SetFetchMode(ADODB_FETCH_NUM). 
-Associative indexes - the keys of the array are the names of the fields (in upper-case). Use $connection->SetFetchMode(ADODB_FETCH_ASSOC). 
-Both numeric and associative indexes - use $connection->SetFetchMode(ADODB_FETCH_BOTH). 
-The default is ADODB_FETCH_BOTH for Oracle. 
- 
-===== Caching ===== 
- 
-You can define a database cache directory using $ADODB_CACHE_DIR, and cache the results of frequently used queries that rarely change. This is particularly useful for SQL with complex where clauses and group-by's and order-by's. It is also good for relieving heavily-loaded database servers. 
- 
-This example will cache the following select statement for 3600 seconds (1 hour): 
- 
-$ADODB_CACHE_DIR = '/var/adodb/tmp'; 
-$rs = $db->CacheExecute(3600, "select names from allcountries order by 1"); 
-There are analogous CacheGetArray( ), CacheGetRow( ), CacheGetOne( ) and CacheSelectLimit( ) functions. The first parameter is the number of seconds to cache. You can also pass a bind array as a 3rd parameter (not shown above). 
-There is an alternative syntax for the caching functions. The first parameter is omitted, and you set the cacheSecs property of the connection object: 
- 
-<code php> 
- 
-$ADODB_CACHE_DIR = '/var/adodb/tmp'; 
-$connection->cacheSecs = 3600; 
-$rs = $connection->CacheExecute($sql, array('id' => 1)); 
-  
-</code> 
  
 ===== Prepare ===== ===== Prepare =====
  
-Using Prepare( ) For Frequently Used Statements+Using Prepare() For Frequently Used Statements
  
-Prepare( ) is for compiling frequently used SQL statement for reuse. For example, suppose we have a large array which needs to be inserted into an Oracle database. The following will result in a massive speedup in query execution (at least 20-40%), as the SQL statement only needs to be compiled once:+Prepare() is for compiling frequently used SQL statement for reuse. For example, suppose we have a large array which needs to be inserted into an Oracle database. The following will result in a massive speedup in query execution (at least 20-40%), as the SQL statement only needs to be compiled once:
  
 <code php> <code php>
Line 199: Line 180:
 Note that LogError( ) is a user-defined function, and not part of ADOdb. Note that LogError( ) is a user-defined function, and not part of ADOdb.
  
-Inserting LOBs is more complicated. Since ADOdb 4.55, we allow you to do this (assuming that the photo field is a BLOB, and we want to store $blob_data into this field, and the primary key is the id field):+Inserting LOBs is more complicated. Assuming in the following example that the photo field is a BLOB, and we want to store $blob_data into this field, and the primary key is the id field): 
 <code php> <code php>
 $sql = "INSERT INTO photos ( ID, photo) ". $sql = "INSERT INTO photos ( ID, photo) ".
Line 217: Line 199:
 Oracle recordsets can be passed around as variables called REF Cursors. For example, in PL/SQL, we could define a function open_tab that returns a REF CURSOR in the first parameter: Oracle recordsets can be passed around as variables called REF Cursors. For example, in PL/SQL, we could define a function open_tab that returns a REF CURSOR in the first parameter:
  
-TYPE TabType IS REF CURSOR RETURN TAB%ROWTYPE; +  TYPE TabType IS REF CURSOR RETURN TAB%ROWTYPE; 
- +  PROCEDURE open_tab (tabcursor IN OUT TabType,tablenames IN VARCHAR) IS 
-PROCEDURE open_tab (tabcursor IN OUT TabType,tablenames IN VARCHAR) IS +  BEGIN 
- BEGIN +    OPEN tabcursor FOR SELECT * FROM TAB WHERE tname LIKE tablenames; 
- OPEN tabcursor FOR SELECT * FROM TAB WHERE tname LIKE tablenames; +  END open_tab; 
- END open_tab;+  
 In ADOdb, we could access this REF Cursor using the ExecuteCursor() function. The following will find all table names that begin with 'A' in the current schema: In ADOdb, we could access this REF Cursor using the ExecuteCursor() function. The following will find all table names that begin with 'A' in the current schema:
 +<code php>
 $rs = $db->ExecuteCursor("BEGIN open_tab(:refc,'A%'); END;",'refc'); $rs = $db->ExecuteCursor("BEGIN open_tab(:refc,'A%'); END;",'refc');
-while ($arr = $rs->FetchRow()) print_r($arr);+while ($arr = $rs->FetchRow())  
 +    print_r($arr); 
 +</code> 
 The first parameter is the PL/SQL statement, and the second parameter is the name of the REF Cursor. The first parameter is the PL/SQL statement, and the second parameter is the name of the REF Cursor.
  
    
- +===== In and Out Parameters =====
-6. In and Out Parameters+
  
 The following PL/SQL stored procedure requires an input variable, and returns a result into an output variable: The following PL/SQL stored procedure requires an input variable, and returns a result into an output variable:
  
-PROCEDURE data_out(input IN VARCHAR, output OUT VARCHAR) IS +  PROCEDURE data_out(input IN VARCHAR, output OUT VARCHAR) IS 
- BEGIN +  BEGIN 
- output := 'I love '||input; +    output := 'I love '||input; 
- END;+  END; 
 +  
 The following ADOdb code allows you to call the stored procedure: The following ADOdb code allows you to call the stored procedure:
 +<code php>
 $stmt = $db->PrepareSP("BEGIN adodb.data_out(:a1, :a2); END;"); $stmt = $db->PrepareSP("BEGIN adodb.data_out(:a1, :a2); END;");
 $input = 'Sophia Loren'; $input = 'Sophia Loren';
Line 247: Line 232:
 $ok = $db->Execute($stmt); $ok = $db->Execute($stmt);
 if ($ok) echo ($output == 'I love Sophia Loren') ? 'OK' : 'Failed'; if ($ok) echo ($output == 'I love Sophia Loren') ? 'OK' : 'Failed';
-PrepareSP( ) is a special function that knows about bind parameters. The main limitation currently is that IN OUT parameters do not work.+</code> 
 + 
 +[[reference:PrepareSP()]] is a special function that knows about bind parameters.
  
 Bind Parameters and REF CURSORs Bind Parameters and REF CURSORs
  
-We could also rewrite the REF CURSOR example to use InParameter (requires ADOdb 4.53 or later):+We could also rewrite the REF CURSOR example to use InParameter:
  
 +<code php>
 $stmt = $db->PrepareSP("BEGIN adodb.open_tab(:refc,:tabname); END;"); $stmt = $db->PrepareSP("BEGIN adodb.open_tab(:refc,:tabname); END;");
 $input = 'A%'; $input = 'A%';
Line 258: Line 246:
 $rs = $db->ExecuteCursor($stmt,'refc'); $rs = $db->ExecuteCursor($stmt,'refc');
 while ($arr = $rs->FetchRow()) print_r($arr); while ($arr = $rs->FetchRow()) print_r($arr);
-Bind Parameters and LOBs+</code>
  
-You can also operate on LOBs. In this example, we have IN and OUT parameters using CLOBs.+===== Bind Parameters and LOBs =====
  
- $text = 'test test test'; +You can also operate on LOBs. In this example, we have IN and OUT parameters using CLOBs. 
- $sql = "declare rs clob; begin :rs := lobinout(:sa0); end;"; +<code php> 
- $stmt = $conn -> PrepareSP($sql); +$text = 'test test test'; 
- $conn -> InParameter($stmt,$text,'sa0', -1, OCI_B_CLOB); # -1 means variable length +$sql = "declare rs clob; begin :rs := lobinout(:sa0); end;"; 
- $rs = ''; +$stmt = $conn -> PrepareSP($sql); 
- $conn -> OutParameter($stmt,$rs,'rs', -1, OCI_B_CLOB); +$conn -> InParameter($stmt,$text,'sa0', -1, OCI_B_CLOB); # -1 means variable length 
- $conn -> Execute($stmt); +$rs = ''; 
- echo "return = ".$rs."<br>";+$conn -> OutParameter($stmt,$rs,'rs', -1, OCI_B_CLOB); 
 +$conn -> Execute($stmt); 
 +echo "return = ".$rs."<br>"; 
 +</code>
 Similarly, you can use the constant OCI_B_BLOB to indicate that you are using BLOBs. Similarly, you can use the constant OCI_B_BLOB to indicate that you are using BLOBs.
  
-Reusing Bind Parameters with CURSOR_SHARING=FORCE+====Reusing Bind Parameters with CURSOR_SHARING=FORCE ====
  
 Many web programmers do not care to use bind parameters, and prefer to enter the SQL directly. So instead of: Many web programmers do not care to use bind parameters, and prefer to enter the SQL directly. So instead of:
  
-$arr = $db->GetArray("select * from emp where empno>:emp", array('emp' => 7900));+  $arr = $db->GetArray("select * from emp where empno>:emp", array('emp' => 7900)); 
 They prefer entering the values inside the SQL: They prefer entering the values inside the SQL:
  
-$arr = $db->GetArray("select * from emp where empno>7900");+  $arr = $db->GetArray("select * from emp where empno>7900"); 
 This reduces Oracle performance because Oracle will reuse compiled SQL which is identical to previously compiled SQL. The above example with the values inside the SQL is unlikely to be reused. As an optimization, from Oracle 8.1 onwards, you can set the following session parameter after you login: This reduces Oracle performance because Oracle will reuse compiled SQL which is identical to previously compiled SQL. The above example with the values inside the SQL is unlikely to be reused. As an optimization, from Oracle 8.1 onwards, you can set the following session parameter after you login:
  
-ALTER SESSION SET CURSOR_SHARING=FORCE+  ALTER SESSION SET CURSOR_SHARING=FORCE 
 This will force Oracle to convert all such variables (eg. the 7900 value) into constant bind parameters, improving SQL reuse. This will force Oracle to convert all such variables (eg. the 7900 value) into constant bind parameters, improving SQL reuse.
  
-More speedup tips.+===== More speedup tips =====
  
-  +==== Dates and Datetime in ADOdb ====
- +
-7. Dates and Datetime in ADOdb+
  
 There are two things you need to know about dates in ADOdb. There are two things you need to know about dates in ADOdb.
Line 297: Line 289:
 Secondly, since Oracle treats dates and datetime as the same data type, we decided not to display the time in the default date format. So on login, ADOdb will set the NLS_DATE_FORMAT to 'YYYY-MM-DD'. If you prefer to show the date and time by default, do this: Secondly, since Oracle treats dates and datetime as the same data type, we decided not to display the time in the default date format. So on login, ADOdb will set the NLS_DATE_FORMAT to 'YYYY-MM-DD'. If you prefer to show the date and time by default, do this:
  
 +<code php>
 $db = NewADOConnection('oci8'); $db = NewADOConnection('oci8');
 $db->NLS_DATE_FORMAT =  'RRRR-MM-DD HH24:MI:SS'; $db->NLS_DATE_FORMAT =  'RRRR-MM-DD HH24:MI:SS';
 $db->Connect($tns, $user, $pwd); $db->Connect($tns, $user, $pwd);
 +</code>
 +
 Or execute: Or execute:
  
-$sql = quot;ALTER SESSION SET NLS_DATE_FORMAT = 'RRRR-MM-DD HH24:MI:SS'";+<code php> 
 +$sql = "ALTER SESSION SET NLS_DATE_FORMAT = 'RRRR-MM-DD HH24:MI:SS'";
 $db->Execute($sql); $db->Execute($sql);
 +</code>
 +
 If you are not concerned about date portability and do not use ADOdb's portability layer, you can use your preferred date format instead. If you are not concerned about date portability and do not use ADOdb's portability layer, you can use your preferred date format instead.
  
-8. Database Portability Layer+===== Database Portability Layer =====
  
 ADOdb provides the following functions for portably generating SQL functions as strings to be merged into your SQL statements: ADOdb provides the following functions for portably generating SQL functions as strings to be merged into your SQL statements:
  
-Function Description +^Function^Description^ 
-DBDate($date) Pass in a UNIX timestamp or ISO date and it will convert it to a date string formatted for INSERT/UPDATE +|DBDate($date)|Pass in a UNIX timestamp or ISO date and it will convert it to a date string formatted for INSERT/UPDATE| 
-DBTimeStamp($date) Pass in a UNIX timestamp or ISO date and it will convert it to a timestamp string formatted for INSERT/UPDATE +|DBTimeStamp($date)|Pass in a UNIX timestamp or ISO date and it will convert it to a timestamp string formatted for INSERT/UPDATE| 
-SQLDate($date, $fmt) Portably generate a date formatted using $fmt mask, for use in SELECT statements. +|SQLDate($date, $fmt)|Portably generate a date formatted using $fmt mask, for use in SELECT statements.| 
-OffsetDate($date, $ndays) Portably generate a $date offset by $ndays. +|OffsetDate($date, $ndays)|Portably generate a $date offset by $ndays.| 
-Concat($s1, $s2, ...) Portably concatenate strings. Alternatively, for mssql use mssqlpo driver, which allows || operator. +|Concat($s1, $s2, ...)|Portably concatenate strings. Alternatively, for mssql use mssqlpo driver, which allows ``||`` operator.| 
-IfNull($fld, $replaceNull) Returns a string that is the equivalent of MySQL IFNULL or Oracle NVL. +|IfNull($fld, $replaceNull)|Returns a string that is the equivalent of MySQL IFNULL or Oracle NVL.| 
-Param($name) Generates bind placeholders, using ? or named conventions as appropriate. +|Param($name)|Generates bind placeholders, using ? or named conventions as appropriate.| 
-$db->sysDate Property that holds the SQL function that returns today's date +|$db->sysDate|Property that holds the SQL function that returns today's date| 
-$db->sysTimeStamp Property that holds the SQL function that returns the current timestamp (date+time). +|$db->sysTimeStamp|Property that holds the SQL function that returns the current timestamp (date+time).| 
-$db->concat_operator Property that holds the concatenation operator +|$db->concat_operator|Property that holds the concatenation operator| 
-$db->length Property that holds the name of the SQL strlen function. +|$db->length|Property that holds the name of the SQL strlen function.| 
-$db->upperCase Property that holds the name of the SQL strtoupper function. +|$db->upperCase|Property that holds the name of the SQL strtoupper function.| 
-$db->random Property that holds the SQL to generate a random number between 0.00 and 1.00. +|$db->random|Property that holds the SQL to generate a random number between 0.00 and 1.00.| 
-$db->substr Property that holds the name of the SQL substring function.+|$db->substr|Property that holds the name of the SQL substring function.
 ADOdb also provides multiple oracle oci8 drivers for different scenarios: ADOdb also provides multiple oracle oci8 drivers for different scenarios:
  
Line 331: Line 330:
 oci8 The default high performance driver. The keys of associative arrays returned in a recordset are upper-case. oci8 The default high performance driver. The keys of associative arrays returned in a recordset are upper-case.
 oci8po The portable Oracle driver. Slightly slower than oci8. This driver uses ? instead of :bindvar for binding variables, which is the standard for other databases. Also the keys of associative arrays are in lower-case like other databases. oci8po The portable Oracle driver. Slightly slower than oci8. This driver uses ? instead of :bindvar for binding variables, which is the standard for other databases. Also the keys of associative arrays are in lower-case like other databases.
 +
 Here's an example of calling the oci8po driver. Note that the bind variables use question-mark: Here's an example of calling the oci8po driver. Note that the bind variables use question-mark:
  
 +<code php>
 $db = NewADOConnection('oci8po'); $db = NewADOConnection('oci8po');
 $db->Connect($tns, $user, $pwd); $db->Connect($tns, $user, $pwd);
 $db->Execute("insert into atable (f1, f2) values (?,?)", array(12, 'abc')); $db->Execute("insert into atable (f1, f2) values (?,?)", array(12, 'abc'));
- +</code>
  
-9. Connecting to Oracle+===== Connecting to Oracle =====
  
 Before you can use ADOdb, you need to have the Oracle client installed and setup the oci8 extension. This extension comes pre-compiled for Windows (but you still need to enable it in the php.ini file). For information on compiling the oci8 extension for PHP and Apache on Unix, there is an excellent guide at oracle.com. Before you can use ADOdb, you need to have the Oracle client installed and setup the oci8 extension. This extension comes pre-compiled for Windows (but you still need to enable it in the php.ini file). For information on compiling the oci8 extension for PHP and Apache on Unix, there is an excellent guide at oracle.com.
  
-Should You Use Persistent Connections+==== Should You Use Persistent Connections ====
  
 One question that is frequently asked is should you use persistent connections to Oracle. Persistent connections allow PHP to recycle existing connections, reusing them after the previous web pages have completed. Non-persistent connections close automatically after the web page has completed. Persistent connections are faster because the cost of reconnecting is expensive, but there is additional resource overhead. As an alternative, Oracle allows you to pool and reuse server processes; this is called Shared Server (also known as MTS). One question that is frequently asked is should you use persistent connections to Oracle. Persistent connections allow PHP to recycle existing connections, reusing them after the previous web pages have completed. Non-persistent connections close automatically after the web page has completed. Persistent connections are faster because the cost of reconnecting is expensive, but there is additional resource overhead. As an alternative, Oracle allows you to pool and reuse server processes; this is called Shared Server (also known as MTS).
Line 348: Line 349:
 The author's benchmarks suggest that using non-persistent connections and the Shared Server configuration offer the best performance. If Shared Server is not an option, only then consider using persistent connections. The author's benchmarks suggest that using non-persistent connections and the Shared Server configuration offer the best performance. If Shared Server is not an option, only then consider using persistent connections.
  
-Connection Examples 
  
-Just in case you are having problems connecting to Oracle, here are some examples: 
  
-a. PHP and Oracle reside on the same machine, use default SID, with non-persistent connections: +===== Error Checking =====
- +
- $conn NewADOConnection('oci8'); +
- $conn->Connect(false, 'scott', 'tiger'); +
-b. TNS Name defined in tnsnames.ora (or ONAMES or HOSTNAMES), eg. 'myTNS', using persistent connections: +
- +
- $conn NewADOConnection('oci8'); +
- $conn->PConnect(false, 'scott', 'tiger', 'myTNS'); +
-or +
- +
-  $conn->PConnect('myTNS', 'scott', 'tiger'); +
-c. Host Address and SID +
- +
- $conn->connectSID true; +
- $conn->Connect('192.168.0.1', 'scott', 'tiger', 'SID'); +
-d. Host Address and Service Name +
- +
- $conn->Connect('192.168.0.1', 'scott', 'tiger', 'servicename'); +
-e. Oracle connection string: +
- +
- $cstr "(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=$host)(PORT=$port)) +
- (CONNECT_DATA=(SID=$sid)))"; +
- $conn->Connect($cstr, 'scott', 'tiger'); +
-f. ADOdb data source names (dsn): +
- +
- $dsn = 'oci8://user:pwd@tnsname/?persist';  # persist is optional +
- $conn = ADONewConnection($dsn);  # no need for Connect/PConnect +
- +
- $dsn = 'oci8://user:pwd@host/sid'; +
- $conn = ADONewConnection($dsn); +
- +
- $dsn = 'oci8://user:pwd@/';   # oracle on local machine +
- $conn = ADONewConnection($dsn); +
-With ADOdb data source names, you don't have to call Connect( ) or PConnect( ). +
- +
-  +
- +
-10. Error Checking+
  
 The examples in this article are easy to read but a bit simplistic because we ignore error-handling. Execute( ) and Connect( ) will return false on error. So a more realistic way to call Connect( ) and Execute( ) is: The examples in this article are easy to read but a bit simplistic because we ignore error-handling. Execute( ) and Connect( ) will return false on error. So a more realistic way to call Connect( ) and Execute( ) is:
  
 +<code php>
 function InvokeErrorHandler() function InvokeErrorHandler()
 { {
Line 407: Line 370:
  echo "<hr>";  echo "<hr>";
 } }
 +</code>
 +
 You can retrieve the error message and error number of the last SQL statement executed from ErrorMsg( ) and ErrorNo( ). You can also define a custom error handler function. ADOdb also supports throwing exceptions in PHP5. You can retrieve the error message and error number of the last SQL statement executed from ErrorMsg( ) and ErrorNo( ). You can also define a custom error handler function. ADOdb also supports throwing exceptions in PHP5.
  
    
  
-Handling Large Recordsets (added 27 May 2005)+===== Handling Large Recordsets =====
  
 The oci8 driver does not support counting the number of records returned in a SELECT statement, so the function RecordCount() is emulated when the global variable $ADODB_COUNTRECS is set to true, which is the default. We emulate this by buffering all the records. This can take up large amounts of memory for big recordsets. Set $ADODB_COUNTRECS to false for the best performance. The oci8 driver does not support counting the number of records returned in a SELECT statement, so the function RecordCount() is emulated when the global variable $ADODB_COUNTRECS is set to true, which is the default. We emulate this by buffering all the records. This can take up large amounts of memory for big recordsets. Set $ADODB_COUNTRECS to false for the best performance.
 This variable is checked every time a query is executed, so you can selectively choose which recordsets to count. This variable is checked every time a query is executed, so you can selectively choose which recordsets to count.
  
-  +===== Resources =====
- +
-11. Other ADOdb Features +
- +
-Schema generation. This allows you to define a schema using XML and import it into different RDBMS systems portably. +
- +
-Performance monitoring and tracing. Highlights of performance monitoring include identification of poor and suspicious SQL, with explain plan support, and identifying which web pages the SQL ran on. +
- +
-  +
- +
-12. Download +
- +
-You can download ADOdb from sourceforge. ADOdb uses a BSD style license. That means that it is free for commercial use, and redistribution without source code is allowed. +
- +
-  +
- +
-13. Resources+
  
 Oracle's Hitchhiker Guide to PHP Oracle's Hitchhiker Guide to PHP
v5/userguide/oracle_tutorial.txt · Last modified: 2019/12/29 21:36 by mnewnham