Re: [fpc-pascal] The Interface to MySQL has changed on version by version

2007-10-08 Thread Michael Van Canneyt
On Mon, 8 Oct 2007, Andi Purwito wrote: > Hi all. This is my test program to track interface changes in mysql lib. > - > Compiling MySQLku.pas > > mysqlku.pas(16,18) Error: Identifier not found "TMYSQL" > mysqlku.pas(16,18)

[fpc-pascal] The Interface to MySQL has changed on version by version

2007-10-08 Thread Andi Purwito
Hi all. This is my test program to track interface changes in mysql lib. program MySQLku; uses mysql50; //Before is mysql4 const DataBase : Pchar = 'dbtes'; Query: Pchar = 'select * from tbl'; InsertSQL : PChar = 'insert into tbl (a, b) values (''value a'',"value b")'; var coun