Source of: /manual/en/intro.uodbc.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.uodbc.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'intro.uodbc.php',
1 => 'Introduction',
),
'up' =>
array (
0 => 'book.uodbc.php',
1 => 'ODBC (Unified)',
),
'prev' =>
array (
0 => 'book.uodbc.php',
1 => 'ODBC',
),
'next' =>
array (
0 => 'uodbc.setup.php',
1 => 'Installing/Configuring',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="intro.uodbc" class="preface">
<h1 class="title">Introduction</h1>
<p class="para">
In addition to normal ODBC support, the Unified ODBC functions in
PHP allow you to access several databases that have borrowed the
semantics of the ODBC API to implement their own API. Instead of
maintaining multiple database drivers that were all nearly
identical, these drivers have been unified into a single set of
ODBC functions.
</p>
<p class="para">
The following databases are supported by the Unified ODBC
functions: <a href="http://www.softwareag.com/Corporate/products/adabas/adad/" class="link external">» Adabas D</a>,
<a href="http://www-306.ibm.com/software/data/db2/" class="link external">» IBM DB2</a>,
<a href="http://www.iodbc.org/" class="link external">» iODBC</a>,
<a href="http://www.solidtech.com/" class="link external">» Solid</a>, and
<a href="http://www.sybase.com/" class="link external">» Sybase SQL Anywhere</a>.
</p>
<blockquote><p><b class="note">Note</b>:
With the exception of iODBC, there is no ODBC involved when
connecting to the above databases. The functions that you
use to speak natively to them just happen to share the same
names and syntax as the ODBC functions. However, building PHP
with iODBC support enables you to use any ODBC-compliant
drivers with your PHP applications. More information on iODBC,
is available at <a href="http://www.iodbc.org/" class="link external">» www.iodbc.org</a>
with the alternative unixODBC available at
<a href="http://www.unixodbc.org/" class="link external">» www.unixodbc.org</a>.
<br />
</p></blockquote>
</div><?php manual_footer(); ?>