It's ok.
Thanks for your help.
Vincent
Search found 2 matches
- 29.01.2010, 09:12
- Forum: 6.6 - stable
- Topic: Management of the database exception
- Replies: 2
- Views: 735
- 27.01.2010, 13:56
- Forum: 6.6 - stable
- Topic: Management of the database exception
- Replies: 2
- Views: 735
Management of the database exception
Hi, This is my code to activate my TZConnection called "db_sagef". (I'm using Lazarus on XP to connect on a MySQL server). with dm_sagef.db_sagef do begin connected := false; try Password := p_password; User := p_user; connected := true; except on EZSQLException do begin ... end; end; end;...