After many posts and lots of help I am getting closer to using an SQL database....
I was able to get my friend to let me use MySql and have the following code connecting to my test database
- Code: Select all Expand view
#include "FiveWin.ch"
#include "ADORDD.ch"
REQUEST ADORDD
Function Main()
USE fusion VIA "ADORDD" TABLE "patients" MYSQL FROM "127.0.0.1" USER "fusion" PASSWORD "fusion"
browse()
USE
return nil
My problem is I get an error (always the same error) whenever I try to do anything to the data.
Browse, Append even a simple "Count To " causes the error.
The error is:
Unrecoverable error 9003:
Too many recursive error handler calls
I am so close and just need some guidance as to why I am getting this error.
Any ideas????