| ADOdb Library for PHP Manual | ||
|---|---|---|
| Prev | Installation Guide | Next |
To test, try modifying some of the tutorial examples. Make sure you customize the connection settings correctly. You can debug using $db->debug = true as shown below:
<?php
include('adodb/adodb.inc.php');
$db =
ADONewConnection($database);
$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>";
?>
For developers who want to release a minimal install of ADOdb, you will need:
| Prev | Home | Next |
| Feature Requests and Bug Reports | Up | Code Initialization |