From 1f8410794c8213d87227fabae2114a3be8033ece Mon Sep 17 00:00:00 2001 From: wei <> Date: Thu, 18 May 2006 08:16:21 +0000 Subject: Moved adodb to 3rdParty directory. --- framework/3rdParty/adodb/docs/readme.htm | 68 ++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 framework/3rdParty/adodb/docs/readme.htm (limited to 'framework/3rdParty/adodb/docs/readme.htm') diff --git a/framework/3rdParty/adodb/docs/readme.htm b/framework/3rdParty/adodb/docs/readme.htm new file mode 100644 index 00000000..4780cb78 --- /dev/null +++ b/framework/3rdParty/adodb/docs/readme.htm @@ -0,0 +1,68 @@ + + +ADODB Manual + + + + + +

ADOdb Library for PHP

+

ADOdb is a suite of database libraries that allow you to connect to multiple + databases in a portable manner. Download from http://adodb.sourceforge.net/. +

+

+

Installation

+Make sure you are running PHP4.0.4 or later. Unpack all the files into a directory accessible by your webserver. +

+To test, try modifying some of the tutorial examples. Make sure you customize the connection settings correctly. You can debug using: +

+<?php
+include('adodb/adodb.inc.php');
+
+$db = ADONewConnection($driver); # eg. 'mysql' or 'oci8' 
+$db->debug = true;
+$db->Connect($server, $user, $password, $database);
+$rs = $db->Execute('select * from some_small_table');
+print "<pre>";
+print_r($rs->GetRows());
+print "</pre>";
+?>
+
+

How are people using ADOdb

+Here are some examples of how people are using ADOdb: + + + -- cgit v1.2.3