ADOdb Lite Thumbnail Logo

ADOdb Lite Test Program

Select your Database Type
Load the Transaction Module
No  -  Yes
Load the ADOdb Lite Module
No  -  Yes
Load the Extend Module
No  -  Yes
Load the Date Module
No  -  Yes
Test DSN Connection
No  -  Yes
Database Name
Database User Name
Database User Password
Database Host

This program will test your install of ADOdb Lite by testing all of the functions/commands that are provided by this package. The test will perform over 20 different tests of all functions.

The Pear Module will automatically be loaded and tested.

The program will attempt to create the database if it does not exist. If you see Could not connect to the database. then you will need to create a database or use an existing database to perform this test.

If you are testing a database other than MySql, MySqli or MySqlt then you will need to create a database table called 'adodb_lite_test' with three fields.

Field 1 = id - int(11) auto_increment
Field 2 = text - longtext or text
Field 3 = dummy - longtext or text

Here is what the MySql create table query looks like.

CREATE TABLE IF NOT EXISTS `adodb_lite_test` (
`id` int(11) NOT NULL auto_increment,
`text` longtext,
`dummy` longtext,
PRIMARY KEY (`id`)
) TYPE=MyISAM

If you are testing on MySql, MySqli or MySqlt the table will be created automatically.