Quantcast
Channel: FileMaker Forum > Report an issue
Viewing all articles
Browse latest Browse all 3510

Cannot get schema via ADO.NET in 64 bit application

$
0
0

Issue report by sa damu

Product

FileMaker Pro

Version

13

Operating system version

windows 8.1 64bit

Description of the issue

could not get localhost database schema via ado.net when using c#

Steps to reproduce the problem

the follow code(the method GetSchema) will throw an exception when run at 64 bit , but in 32 bit is ok

P.S. i installed both 64 bit and 32 bit odbc driver



var connectionString = @"Driver={FileMaker ODBC};database=test;server=localhost;uid=Admin";

using (OdbcConnection con = new OdbcConnection(connectionString))
{
con.Open();
var tables = con.GetSchema(OdbcMetaDataCollectionNames.Tables);
}

Actual result

i get an exception without any error message,please check the exception pic

Screenshot


Viewing all articles
Browse latest Browse all 3510

Trending Articles