Forum Moderators: phranque
Today I noticed that certain pages wouldn't pull, returning "unspecified" errors at the Open command. When I changed back to ODBC with Data Source names, it worked fine. Are there any syntax differences in the SQL statement? Shouldn't be.
I read somewhere about an advantage of ODBC with connection pooling. Does this have any bearing on the issue?
Also, most discussions of mySql involving ASP seem to want to use ODBC rather than direct server connections. Any idea about that?
[edited by: korkus2000 at 6:53 pm (utc) on Sep. 9, 2002]
Did you see a performance increase when switching to the native Jet driver?
Also, if you are using recordsets. There are ways to speed up the access to the DB depending on recordset syntax [ rs1!field1 vs rs1.fields("field1") vs rs1.fields(0) ]
Do some tests, and search the net for discussion of this.