|
-
Oct 4th, 2000, 08:53 PM
#1
Thread Starter
Addicted Member
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)
-
Jul 18th, 2001, 05:43 PM
#2
Hyperactive Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|