http://www.vb-helper.com/HowTo/ado1.zip

	Purpose
Open an Oracle ODBC database using ADO and list the records in a table.

	Method
Use the connect string:

    conn.ConnectionString = _
        "Driver={Microsoft ODBC for Oracle};" & _
        "UID=user_name;PWD=user_passsword"

Open the table as in:

    Set rs = New ADODB.Recordset
    rs.Open "TableName", conn, adOpenDynamic, adLockOptimistic, adCmdTable

Note that you need to fill in a valid user name, password, and table for you database.

	Disclaimer
This example program is provided "as is" with no warranty of any kind. It is
intended for demonstration purposes only. In particular, it does no error
handling. You can use the example in any form, but please mention
www.vb-helper.com.
