Results 1 to 2 of 2

Thread: filemaker

  1. #1

    Thread Starter
    Addicted Member nota141's Avatar
    Join Date
    Feb 2000
    Location
    The place down there under everyone else.
    Posts
    224

    Question

    Does anyone out there know of the database software filemaker made by claris and is there a way to make a visual basic frontend.
    On Error wake up and try again ;-)
    ___________________________
    ICQ # 65392645
    email - [email protected]

    Visual Studio 6 ent with SP5 Running on XP with an AMD 1.2 ThunderBird with 512 MB RAM And a 120GB primary HDD (very sweet)

  2. #2
    Hyperactive Member
    Join Date
    Mar 2000
    Location
    Canada
    Posts
    264
    I have the same question, I am trying to use ODBC with filemaker pro 5.5, I added the ODBC driver, and that part seems fine, but when I try to make the connection, I get an error message.

    my code:

    <%
    dim Aryinfo
    strConn = "Driver={FileMaker Pro};DBQ=" & Server.MapPath("fm5db.fp5") & ";"
    set objConn = server.createObject("ADODB.CONNECTION")
    set ObjRec = server.createObject("ADODB.RECORDSET")
    objConn.open strConn
    strSQL="select * from fm5db"
    set objRec = objConn.execute(strSQL)
    if not (objRec.eof) then
    Aryinfo=objRec.getrows ()
    for counter=0 to ubound (Aryinfo,2)
    response.write (Aryinfo (0,counter) & Aryinfo (1,counter))
    next
    objrec.close
    end if
    set objrec=nothing
    objConn.close
    set objconn = nothing
    %>

    HELP
    In the beginning the universe was created. This has made a lot of people very angry and is generally regarded as a bad idea.

    - Douglas Adams
    The Hitchhiker's Guide to the Galaxy

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width