Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

Does it support ODBC, if yes then download

 

Microsoft .NET ODBC Data Provider

 

it will do your work , it could be found form MSDN download section.

The one and only

Dr. Madz

eee-m@il

Posted

re

 

it does support ODBC

get the driver and use the data adapter wizard to get your connection string

then you can copy paste it into whatever form you want

 

below is NOT your connection string, just proof that Interbase supports ODBC

 

"Driver={INTERSOLV InterBase ODBC Driver (*.gdb)};Server=ComputerName;Database=ComputerName:C:\mydatabase.gdb;Uid=username;Pwd=password"

Posted

I downloaded Microsoft .NET ODBC Data Provider from Microsoft,

but DataAdapter Wizard doesn't work.Can you tell me samething I don't know or am I doing something wrong?

Posted

Yes.DataAdapter wizard doesn't start like it does with the other adapters.Am I stupid or what.Another way is if you can send me the whole ConnectionString from your example so I can work around something.

Thanks for all your help so far

you helped me a lot

Posted

re: Connection String

 

Here are the connection strings but before you use these try adding a new connection in the "server explorer" window.

For local machine

oConn.Open "Driver={INTERSOLV InterBase ODBC Driver (*.gdb)};" & _
          "Server=localhost;" & _
          "Database=localhost:C:\Home\Data\Mydb.gdb;" & _
          "Uid=myUsername;" & _
          "Pwd=myPassword" 

 

for remote machine

 

oConn.Open "Driver={INTERSOLV InterBase ODBC Driver (*.gdb)};" & _
          "Server=myMachineName;" & _
          "Database=myMachineName:C:\Home\Data\Mydb.gdb;" & _
          "Uid=myUsername;" & _
          "Pwd=myPassword" 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...