ADO.NET 2.0 Driver for InterBase

Comments
-
Patrick Friday, 4 April 2008
Too bad I can't send you a screenshot. This is what I see, even after clearing my browser history:
InterBase Registered User Downloads
InterBase Size Language
InterBase 2007 Desktop full product including Service Pack 2
InterBase 2007 Desktop full product. Revised version includes Service Pack 2. English, Windows. 50MB
HTTP
FTP
English
InterBase 2007 Desktop full product including Service Pack 2
InterBase 2007 Desktop full product. Revised version includes Service Pack 2. 92.1MB
HTTP
FTP
Japanese
InterBase 2007 Doc update
InterBase 2007 updated documentation. Same as one released on 18-Oct-2007 12.1MB
HTTP
FTP
Japanese
InterBase 2007 Server full product including Service Pack 2
InterBase 2007 Server full product. Revised version includes Service Pack 2. 219.1MB
HTTP
FTP
English
InterBase 2007 Server full product including Service Pack 2
InterBase 2007 Server full product. Revised version includes Service Pack 2. 173.9MB
HTTP
FTP
Japanese
InterBase 2007 Service Pack 2 - Linux
InterBase 2007 Service Pack 2. Same as one released on 08-Aug-2007 12.1MB
HTTP
FTP
English
InterBase 2007 Service Pack 2 - Linux
InterBase 2007 Service Pack 2. Same as one released on 04-Sep-2007 12.1MB
HTTP
FTP
Japanese
InterBase 2007 Service Pack 2 - Solaris
InterBase 2007 Service Pack 2. Same as one released on 08-Aug-2007 12.1MB
HTTP
FTP
English
InterBase 2007 Service Pack 2 - Windows
InterBase 2007 Service Pack 2. Same as one released on 08-Aug-2007 12.1MB
HTTP
FTP
English
InterBase 2007 Service Pack 2 - Windows
InterBase 2007 Service Pack 2. Same as one released on 04-Sep-2007 12.1MB
HTTP
FTP
Japanese
DataDirect ODBC Driver for InterBase - Linux
DataDirect ODBC Driver for InterBase - Linux 8.3MB
HTTP
FTP
English
DataDirect ODBC Driver for InterBase - Solaris
DataDirect ODBC Driver for InterBase - Solaris 7.7MB
HTTP
FTP
English
DataDirect ODBC Driver for InterBase - Windows
DataDirect ODBC Driver for InterBase - Windows 6.4MB
HTTP
FTP
English
InterBase 7.5.1 Developer Japanese Edition - Linux
Updated InterBase 7.5.1 Developer Japanese Edition for JBuilder 2006 users who experience licensing issues. 58.5MB
HTTP
FTP
Japanese
InterBase 7.5.1 Developer Japanese Edition - Solaris
Updated InterBase 7.5.1 Developer Japanese Edition for JBuilder 2006 users who experience licensing issues. 60.8MB
HTTP
FTP
Japanese
InterBase 7.5.1 Developer Japanese Edition - Windows
Updated InterBase 7.5.1 Developer Japanese Edition for JBuilder 2006 users who experience licensing issues. 30.8MB
HTTP
FTP
Japanese
InterBase 7.5.1 Service Pack 1 - Linux
InterBase 7.5.1 Service Pack is available for download for all InterBase 7.5.1 users. 2.5MB
HTTP
FTP
English
InterBase 7.5.1 Service Pack 1 - Solaris
InterBase 7.5.1 Service Pack is available for download for all InterBase 7.5.1 users. 3.9MB
HTTP
FTP
English
InterBase 7.5.1 Service Pack 1 - Windows
InterBase 7.5.1 Service Pack is available for download for all InterBase 7.5.1 users. 1.7MB
HTTP
FTP
English
InterBase 7.5.1 for 7.1 users - Windows
96MB
HTTP
FTP
English
InterBase 7.5.1 Desktop Edition download - Windows
InterBase 7.5.1 Desktop Edition image for InterBase 7.1 users. 89.6MB
HTTP
FTP
English
InterBase 7.5.1 Server Edition download - Linux
InterBase 7.5.1 Server Edition image for InterBase 7.1 users. 96.3MB
HTTP
FTP
English
InterBase 7.5.1 Server Edition download - Solaris
InterBase 7.5.1 Server Edition image for InterBase 7.1 users. 109.5MB
HTTP
FTP
English
InterBase 7.5.1 Server Edition download - Windows
InterBase 7.5.1 Server Edition image for InterBase 7.1 users. 96.3MB
HTTP
FTP
English
Borland Data Provider 2.5.0 (ADO.NET 1.1) for InterBase
This is an updated Borland Data Provider (ADO.NET 1.1) for InterBase customers. It has the same functionality as the one released with BDS 2006, but can be used by InterBase customers with Microsoft Visual Studio. 872.8K
HTTP
FTP
English
InterBase 7.5 updated documentation
InterBase 7.5 Doc set (updated for users of InterBase 7.x). Same as one released on 16-Jun-2006. 6.8MB
HTTP
FTP
English
InterBase 7.1 Security update - Linux
InterBase 7.1 Security update. Same as one released on 12-Aug-2004 13MB
HTTP
FTP
InterBase 7.1 Security update - Windows
InterBase 7.1 Security update. Same as one released on 12-Aug-2004 13MB
HTTP
FTP
English
InterBase 7.1 Security update - Windows
InterBase 7.1 Security update. Same as one released on 12-Aug-2004 13MB
HTTP
FTP
Japanese
InterBase 7.1 Service Pack 2 - Linux
InterBase 7.1 Service Pack 2. Same as one released on 07-May-2004 13MB
HTTP
FTP
Japanese
InterBase 7.1 Service Pack 2 - Linux
InterBase 7.1 Service Pack 2. Same as one released on 07-May-2004 13MB
HTTP
FTP
English
InterBase 7.1 Service Pack 2 - Solaris
InterBase 7.1 Service Pack 2. Same as one released on 07-May-2004 13MB
HTTP
FTP
English
InterBase 7.1 Service Pack 2 - Windows
InterBase 7.1 Service Pack 2. Same as one released on 07-May-2004 13MB
HTTP
FTP
Japanese
InterBase 7.1 Service Pack 2 - Windows
InterBase 7.1 Service Pack 2. Same as one released on 07-May-2004 -
Randolph Beekman Friday, 20 March 2009
Craig,
We had some Interbase contacts before, but I have this weird problem with executing a stored procedure using ADO 2.0. This SP returns a GEN_ID, but when I execute the stored proc it returns the following error:
message length error (encountered 0, expected 8)
Here is a code snippet:
Dim strConnection As String
Dim objConnection As TAdoDbxConnection
Dim objCommand As TAdoDbxCommand
Dim strSQLGetApplicatieId As String
Dim dtrApplicatieId As TAdoDbxDataReader
Dim intApplicatieId As Integer
strConnection = ConfigurationManager.AppSettings("ConnectPiet")
objConnection = New TAdoDbxConnection(strConnection)
strSQLGetApplicatieId = "execute procedure sp_new_napplicatie_id"
objCommand = New TAdoDbxCommand()
objCommand.Connection = objConnection
objCommand.CommandType = CommandType.StoredProcedure
objCommand.CommandText = strSQLGetApplicatieId
objCommand.Connection.Open()
dtrApplicatieId = objCommand.ExecuteReader()
While dtrApplicatieId.Read
intApplicatieId = dtrApplicatieId("napplicatie_id")
End While
dtrApplicatieId.Close()
objConnection.Close()
Do you have any idea,
Thanks in advance,
Randolph Beekman
Connexxion -
Landreau Emmanuel Wednesday, 15 December 2010
Hello,
I have installed the ADO.NET 2.0 driver for interbase, but I still can't see it in Visual Studio 2010 datasource manager.
I have tried to add its declaration in the machine.config section : but it doesn't change anything.
Do you have any idea to solve this ?
Thanks for your help.
Read you soon. -
Please login first in order for you to submit comments
- Page :
- 1
Is it possible I only see an ADO.NET 1.1 driver?