vote up 0 vote down star

Hai

i want oledb connection using Dsn. I used the following code

'Dsn Create
 dbRegBase.RegisterDatabase("GEMINI", "Microsoft Access Driver (*.mdb)", True,DBQ=D:\Gemini\GEMINI\database\paints_01_2008-2009.mdb
Description=Greenchip Technologies ODBC Database File Path
OemToAnsi=No
UID=admin
PWD=XXXXXX

conection code
Provider=Microsoft.Jet.OLEDB.4.0;DBQ ='GEMINI';Persist Security Info=False;Jet OleDB:Database Password = XXXXXX

But Error come error name is "Could not find installable ISAM" what i do . please tell me.

flag

0% accept rate
Try not to post passwords on a public website... – DJ Apr 3 at 15:05

1 Answer

vote up 0 vote down

Does it need to be an OleDB connection?

I tried using OleDB in my most recent application and failed miserably but managed using and OdbcConnection and DSN.

String query = "SELECT * FROM myTable"; //Complete this for your specific query
OdbcConnection con = new OdbcConnection("DSN=DatabaseName");
OdbcCommand com = new OdbcCommand("Query...", con);
try
{
    con.Open();
    OdbcReader reader = com.ExecuteReader();

    while(reader.Read())
    {
        //Do things with the results
    }
}
catch(Exception ex)
{
    //Exception handling
}

A lot friendlier than using OleDB I think.

link|flag
your code come error – somu Apr 3 at 10:48
You'll need to add in the DatabaseName to the DSN and create a proper query to create the OdbcCommand with. You'll also need an OdbcDataReader in order to read what you've queried. – Bailz Apr 3 at 11:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.