all groups > dotnet odbc.net > may 2004
ODBC connection to AS400,
Posted by Frameit at 5/31/2004 1:36:03 PM
Hi
1-I have IBM Client Access installed on Serve
2-I have created a system ODBC on the machin
I'm trying to connect to AS400 data but the following cod
MyConnection=New OdbcConnection(MysConnectonStringIsHere
MyConnection.open()
hangs for long meaning it cannot open the connection.I do not... more >>
Reopenning ADODB Connection
Posted by Bob Laflin at 5/21/2004 5:25:24 AM
I'm trying to reuse an ADO connection in a loop. The connection string
is different each time I go through the loop. My code is basically the
following:
Dim conn as ADODB.Connection
Do loop
_ conn = new ADODB.Connection
_ I use a case statement to set connection string
_ conn.open()... more >>
Add a new column to dBase
Posted by smalolepszy NO[at]SPAM poczta.onet.pl at 5/19/2004 11:19:16 AM
I have a database in data.dbf
Now, I want to add a new column to this datebase. I write it in C#.
My code is:
string nazwa = "dsn=baza_dbf";
OdbcConnection cn = new OdbcConnection(nazwa);
cn.Open();
OdbcCommand cmd = new OdbcCommand();
cmd.CommandText = "??????????????????????... more >>
Getting a list of Tables in MS access database
Posted by Steve at 5/12/2004 2:31:05 PM
I have a need to list all the tables in a MS access database using ODBC
How can this be acheieved ? ... more >>
System.Data.Odbc.OdbcException: ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not
Posted by Rodri Ram at 5/6/2004 7:09:49 AM
Hi, All
I have a Problem when I'm working with Informix Dynamic Server DataBase,
and VB.NET as tools Developmen,
the problem is when a Run my WebAplication have this message.
"System.Data.Odbc.OdbcException: ERROR [IM002] [Microsoft][ODBC Driver
Manager] Data source name not found and... more >>
ERROR [IM003] Specified driver could not be loaded due to system error 5 (Oracle in OraHome92).
Posted by XuChunming at 5/3/2004 11:00:23 PM
Hi ,
I use ODBC DSN to connect Oracle.
string newConnString ="DSN=OracleTest;UID=tt;PWD=pp";
OdbcConnection m_connection = new OdbcConnection(newConnString);
m_connection.Open();
when I setup the DSN in windows ODBC Datasource manager, the test
connection successfully, but when use in asp... more >>
|