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

2007-10-09 Thread Joost van der Sluis
Op maandag 08-10-2007 om 22:16 uur [tijdzone -0700], schreef Andi Purwito: > > You cannot. Mysql is a pain to maintain. They break interface compatibility > almost every release. > So its mean that mysql is difficult to followed? Yes. (It's not for nothing that ppl still use mysql 4.0 and 4.1) Al

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

2007-10-09 Thread Michael Van Canneyt
On Mon, 8 Oct 2007, Andi Purwito wrote: > > > You cannot. Mysql is a pain to maintain. They break interface compatibility > almost every release. > So its mean that mysql is difficult to followed? Yes. The best is to stick to 1 version of MySQL as long as possible. > if yes, is there any othe

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

2007-10-09 Thread Andi Purwito
> You cannot. Mysql is a pain to maintain. They break interface compatibility almost every release. So its mean that mysql is difficult to followed? if yes, is there any other way to access mysql like odbc maybe? - Be a better Globetrotter. Get better trave

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