| NotesSql & .Net connection problem (3 replies) |
| microsoft.public.dotnet.framework.odbcnet |
| Hi, I'm trying to connect to a Notes database using .Net, Odbc & NotesSql, but I keep getting the following error on opening the connection: System.Data.Odbc.OdbcException: ERROR [IM003] Specified driver could not be loaded due to system error 1114 (Lotus NotesSQL Driver (*.nsf)). I can open the connection ok using .asp, with the same connection string. I assume it's some kind of permissions issue... |
|
| Query is too complex error (3 replies, VIP) |
| microsoft.public.dotnet.framework.odbcnet |
| I am updating Access database using System.Data.Odbc I am using the following code: //////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// foreach(DataColumn cl in dsNew.Tables[0].Columns) { dataRowDest[cl.ColumnName] dataRowOrigin[cl.ColumnName]; } adapter.Update(ds, tableName); ///////////////////////////////... |
|
| OLE DB provider for reading DBF files using ASP.NET (3 replies) |
| microsoft.public.dotnet.framework.odbcnet |
| I am trying to read a DBF file using ASP.NET, I have spent hours trying to get the correct connection string. Is there anyone out there that has successfully connected a dbase III file with a ASP.NET page?? If ( readDBFFile TRUE ) then read on; else dont worry; This is the code that I have been using but the compiler seems to complain on the line ..... [ reader command.ExecuteReader() ] the error ... |
|
| Error when connecting to a Foxpro database from a .NET web app (3 replies) |
| microsoft.public.dotnet.framework.odbcnet |
| Hello all Here's the situation. I have a web server, and I'm developing a web application using VB.NET that will run on this server. I also have another server, which runs a third party Human Resources application, written in Visual Foxpro. Its databases are standard .dbf files. I want to be able to connect to the .dbf files on the HR server directly from my web app on the web server. I have not b... |
|
| Rollback transaction doesnt work when DataAdapter.Update() throws exception caused by RAISEERROR in a trigger (6 replies) |
| microsoft.public.dotnet.framework.odbcnet |
| Hi, I have a trigger like this (simplified to illustrate the problem): CREATE TRIGGER Test ON [dbo].[TestTable] FOR INSERT, UPDATE, DELETE AS RAISERROR( 'test trigger error !', 16, 1) And a C# code portion: (new record inserted in dsFormTest.TestTable) OdbcTransaction odbcTrans null; try { if ( odbcConn.State ! ConnectionState.Open ) odbcConn.Open(); odbcTrans odbcConn.BeginTransaction(); odaTest.... |
|
| Solutions Won't Load (2 replies) |
| microsoft.public.dotnet.framework.odbcnet |
| I've been using Visual Studio .NET for several weeks now. I've finished some example solutions as well as started others. Now when I open the environment, very few of them will load properly. Usually, I get no listing of files in the properties window to the right or anything like that. Does anyone have any idea what might cause this and how I can fix it? |
|