문제

im trying to connect to to an interBase database, and create a ASP.net application. im using a 64bit machine but for sum reason I cant seem to add the data source from the data source administrator. im using a program called data direct which worked perfectly on my 32bit machine.

can any one suggest how I may be bale to solve this ??

도움이 되었습니까?

해결책

Although there is (as of IB XE) a 64 bit client for IB, I don't think Embarcadero/DataDirect currently ship a 64 bit ODBC driver. Therefore you would need to use a 32 bit app pool and set up the data source using the 32 bit ODBC control panel (or directly in the 32 bit registry). This will work on a 64 bit machine.

다른 팁

I agree with Craig. But a bit suggest: You can step the ODBC creation, by using directly and odbc.odbcConnection:

$  Dim sConnStr As String 
$  sConnStr = "Driver={INTERSOLV Interbase ODBC Driver (*.gdb)};
$        uid=sysdba;
$        password=masterkey;
$        database=server:path"
$  Dim oConn As New Odbc.OdbcConnection(sConnStr) 
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top