all groups > dotnet odbc.net > july 2004
SCO Vision ODBC
Posted by Chris Morris at 7/30/2004 12:32:03 PM
I have a .NET client application which is trying to connect to an Informix
database via SQL Retriever 4.17
I am experiencing an error message which was supposed to have been corrected
in v4.17 of the ODBC driver:
'ERROR [IM003] Specified driver could not be loaded due to system error 1114
(... more >>
Use of SqlConnection with an ODBC datasource
Posted by Mike LaRocca at 7/16/2004 7:43:01 AM
Hi everyone,
Is it possible to use an ODBC datasource with a SqlConnection object? If we use SQL Server, we can create a SqlConnection, then drag it onto our form for use. But if we instead use an ODBC datasource, when we drag the connection onto our form, we get the following error:
Yo... more >>
reading dbf tables
Posted by Doug Collie at 7/13/2004 3:22:01 AM
I have an interesting problem reading data from a dbf table
I can create a dbf table in excel, save it then use odbc in .net to read it - ok.
I can read the same table in another (3rd party) app ok.
If I change data in the table using the 3rd party app the table structure changes.
Excel re... more >>
Reading FoxPro Date field frpm ODBC
Posted by Enzo at 7/1/2004 9:29:01 PM
Ok, what is the trick!!!
I am using C# to read a FoxPro DBF file.
I do the following:
Private DataSet getDBFData(string dbfFile)
{
DataSet ds = new DataSet();
string Sql;
int dbfNameStart = dbfFile.LastIndexOf(@"\");
string dbfTableName = dbfFile.Substring(dbfNameStart ... more >>
ADOX and C# problems
Posted by Enzo at 7/1/2004 4:36:01 PM
The following code:
ADOX.Catalog mdb = new ADOX.CatalogClass();
try
{
mdb.Create("Provider=Microsoft.Jet.OLEDB.4.0;" +
"Data Source=" + mdbPath + @"\" + mdbName + ";" +
"Jet OLEDB:Engine Type=5");
ADOX.Table mdbTbl = new ADOX.TableClass();
mdbTbl.Name = "Receivers... more >>
|