ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


project:include_file_guide

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
reference:include_file_guide [2016/01/13 02:12] – ↷ Links adapted because of a move operation mnewnhamv5:reference:include_file_guide [2016/01/14 03:14] – [Session Management Library] mnewnham
Line 14: Line 14:
 prior to inclusion of the file, the following constant may optionally be defined: prior to inclusion of the file, the following constant may optionally be defined:
  
-[[reference:ADODB_FETCH_MODE]]+[[v5:reference:adodb_fetch_mode]]
  
 Any driver and library files automatically include, based on driver and requirements. However, if you are modifying ADOdb file and are having difficulties debugging, your optional  core includes can look like this: Any driver and library files automatically include, based on driver and requirements. However, if you are modifying ADOdb file and are having difficulties debugging, your optional  core includes can look like this:
Line 26: Line 26:
  
 ===== Date/Time Library ===== ===== Date/Time Library =====
-The ADOdb [[v5:datetime:datetime_library|Date/Time Library]] is standalone and does not require a database connection.+The ADOdb [[v5:datetime:datetime_index|Date/Time Library]] is standalone and does not require a database connection.
  
 <code php> <code php>
Line 33: Line 33:
  
 ===== Session Management Library ===== ===== Session Management Library =====
-The ADOdb [[v5:session:session_library|Session Library]] should be included after the database handler. Make sure to use the **adodb-session2.inc.php**, not **adodb-session.inc.php**.+The ADOdb [[v5:session:session_index|Session Library]] should be included after the database handler. Make sure to use the **adodb-session2.inc.php**, not **adodb-session.inc.php**.
 <code php> <code php>
 require 'adodb-directory/adodb.inc.php'; require 'adodb-directory/adodb.inc.php';
 require 'adodb-directory/session/adodb-session2.inc.php'; require 'adodb-directory/session/adodb-session2.inc.php';
 +</code>
 +==== Using Encrypted Data ====
 +<code php>
 +require 'adodb-directory/adodb.inc.php';
 +require 'adodb-directory/session/adodb-cryptsession2.inc.php';
 +</code>
 +==== Storing Data In CLOBS ====
 +Do not use this with Oracle Databases.
 +<code php>
 +require 'adodb-directory/adodb.inc.php';
 +require 'adodb-directory/session/adodb-session-clob2.inc.php';
 </code> </code>
  
 ===== ADOdb-xmlschema ===== ===== ADOdb-xmlschema =====
-The ADOdb [[v5:session:session_library|Session Library]] should be included after the database handler. Make sure to use the **adodb-xmlschema03.inc.php**, not **adodb-xmlschema.inc.php**.+The ADOdb [[v5:session:session_index|Session Library]] should be included after the database handler. Make sure to use the **adodb-xmlschema03.inc.php**, not **adodb-xmlschema.inc.php**.
 <code php> <code php>
 require 'adodb-directory/adodb.inc.php'; require 'adodb-directory/adodb.inc.php';
project/include_file_guide.txt · Last modified: 2022/07/08 14:02 by dregad