I know to use ODBC to connect to my SQL Database in Visual basic with this code. My Question is If I have a filemaker database how would I connect to it using a ODBC. Some code example would be nice. Because I want to try to use Filemaker database with an Application I create in RealBasic. And If someone can show me how to connect to
filemaker In Realbasic that would really help me alot. To finish my project. As I am having a hard time in RealBasic
Dim adoPrimaryRS As Recordset
Dim db As Connection
Dim dbOpenStr As String
dbOpenStr = "PROVIDER=SQL;dsn="";uid=" & "" & ";pwd=" & "" & ";database=Stock;"
Set db = New Connection
db.CursorLocation = adUseClient
db.Open dbOpenStr
Set adoPrimaryRS = New Recordset
adoPrimaryRS.Open "select * from NEW INV where ITEM = '" & Newstring & "'", db, adOpenStatic, adLockReadOnly