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/08 23:57] – [Core application] mnewnhamproject:include_file_guide [2016/01/17 02:59] – ↷ Page moved from v5:reference:include_file_guide to project:include_file_guide mnewnham
Line 3: Line 3:
 This page describes the required and optional include files for use in applications. Other helpful notes are: This page describes the required and optional include files for use in applications. Other helpful notes are:
  
-  * There is currently no support for autoloading. +  * There is no support in ADOdb Version 5 for autoloading. 
-  * There is currently no support for namespacing +  * There is no support in ADOdb Version 5 for namespacing 
  
 ===== Core application ===== ===== Core application =====
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 [[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 [[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 [[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