Use Of FileMaker in .NET Framework

In this article I will explain how to use FileMaker in .NET Framework
  • 3781

Introduction

FileMaker is Remote Data Access Companion (RDAC) plug-in needs to be enabled, even if FileMaker is installed on the same machine as the application / website.

VB.NET code

Imports System.Data.Odbc
Dim myConnection As OdbcConnection = New OdbcConnection;();
myConnection.ConnectionString = myConnectionString
myConnection.Open()
//execute queries, etc
myConnection.Close()


C# code

using System.Data.Odbc;
OdbcConnection myConnection = new OdbcConnection;();
myConnection.ConnectionString = myConnectionString;
myConnection.Open();
//execute queries, etc
myConnection.Close();


Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answer here


Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.