[lazarus] port for TMysqlconnection

2007-04-03 Thread Sébastien TACK
Hello, I would like specify a precise port for TMysqlConnection. How can I do this ? Regards. Sébastien TACK _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at

Re: [lazarus] port for TMysqlconnection

2007-04-03 Thread Michael Van Canneyt
On Tue, 3 Apr 2007, Sébastien TACK wrote: Hello, I would like specify a precise port for TMysqlConnection. How can I do this ? I committed a fix to subversion so you can specify it in the parameters: Params.['Port']:=IntToStr(4545); This means you'll have to recompile the mysql

Re: [lazarus] port for TMysqlconnection

2007-04-03 Thread Darmawan Sugiarto
I have a same problem with this... but I used PQconnection I can solve my program with add this code === with PQConnection1 do begin HostName:='localhost'; DatabaseName:='pep'; UserName:='superuser';

Re: [lazarus] port for TMysqlconnection

2007-04-03 Thread Michael Van Canneyt
On Tue, 3 Apr 2007, Darmawan Sugiarto wrote: I have a same problem with this... but I used PQconnection I can solve my program with add this code === with PQConnection1 do begin HostName:='localhost';