ADODB.Connection

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Am using VB.net 2003 on a W2K Pro development and target platform

Dim cn as ADODB.Connection = new ADODB.Connectio

Works fine in the IDE and with my test app, but immediately throws an exception on the target box

Both boxes have the .NET Platform installed. Both boxes have MDAC 2.7.1 installed

I've included

Imports System.Dat
Imports ADOD

Is this problem obvious to anyone? Or maybe someone could point me in how to determine what the problem is

Bob Krame
 
Look at your connection string and make sure it's valid. Or check
permissions in the target database. You didn't provide the message of
the exception thown -- that often provides a clue as where the problem
lies.

-- Mary
MCW Technologies
http://www.mcwtech.com
 
Bob,

Give us the exception message, that would help.

Thanks,
JOe

-----Original Message-----
Am using VB.net 2003 on a W2K Pro development and target platform.

Dim cn as ADODB.Connection = new ADODB.Connection

Works fine in the IDE and with my test app, but
immediately throws an exception on the target box.
Both boxes have the .NET Platform installed. Both boxes have MDAC 2.7.1 installed.

I've included:

Imports System.Data
Imports ADODB

Is this problem obvious to anyone? Or maybe someone
could point me in how to determine what the problem is.
 
Back
Top