mysql5-specific bug or feature
Posted: Tue 11 Mar 2008 04:55
my app (D7 with 5.20.1.14) designed for mysql server 4.1
I'm upgraded to mysql 5.0 and found problem with TMyTable - it's not working with mysql 5.0.41 (community, win32).
Example:
mysql 4.1
OK
OK
mysql 5.0
error in SQL query
OK
TMyTable is use SQL-query "SELECT * from table1" for fetching data from table. When application tried to open TMyTable, exception is raised every time.
I'm upgraded to mysql 5.0 and found problem with TMyTable - it's not working with mysql 5.0.41 (community, win32).
Example:
mysql 4.1
Code: Select all
use test;
SELECT * from table1Code: Select all
SELECT * from test.table1mysql 5.0
Code: Select all
use test;
SELECT * from table1Code: Select all
SELECT * from test.table1TMyTable is use SQL-query "SELECT * from table1" for fetching data from table. When application tried to open TMyTable, exception is raised every time.