Re: [fpc-devel] Call initialisation of library automatically in unit-initialization?

2008-12-04 Thread Joost van der Sluis
Op woensdag 03-12-2008 om 18:39 uur [tijdzone +0100], schreef Joost van der Sluis: > Op woensdag 03-12-2008 om 15:06 uur [tijdzone +], schreef Martin > Friebe: > > Joost van der Sluis wrote: > > > Op woensdag 03-12-2008 om 13:09 uur [tijdzone +0100], schreef Michael > > > Van Canneyt: > > >

Re: [fpc-devel] Call initialisation of library automatically in unit-initialization?

2008-12-03 Thread Joost van der Sluis
Op woensdag 03-12-2008 om 15:06 uur [tijdzone +], schreef Martin Friebe: > Joost van der Sluis wrote: > > Op woensdag 03-12-2008 om 13:09 uur [tijdzone +0100], schreef Michael > > Van Canneyt: > > > >> On Wed, 3 Dec 2008, Joost van der Sluis wrote: > >> > >> > >>> When you use the MySQL

Re: [fpc-devel] Call initialisation of library automatically in unit-initialization?

2008-12-03 Thread Martin Friebe
Joost van der Sluis wrote: Op woensdag 03-12-2008 om 13:09 uur [tijdzone +0100], schreef Michael Van Canneyt: On Wed, 3 Dec 2008, Joost van der Sluis wrote: When you use the MySQL client, you have to call myslq_library_init to initialise the library, and mysql_library_end to de-initial

Re: [fpc-devel] Call initialisation of library automatically in unit-initialization?

2008-12-03 Thread Joost van der Sluis
Op woensdag 03-12-2008 om 13:09 uur [tijdzone +0100], schreef Michael Van Canneyt: > > On Wed, 3 Dec 2008, Joost van der Sluis wrote: > > > When you use the MySQL client, you have to call myslq_library_init to > > initialise the library, and mysql_library_end to de-initialize it again. > > > > W

Re: [fpc-devel] Call initialisation of library automatically in unit-initialization?

2008-12-03 Thread Michael Van Canneyt
On Wed, 3 Dec 2008, Joost van der Sluis wrote: > Hi all, > > When you use the MySQL client, you have to call myslq_library_init to > initialise the library, and mysql_library_end to de-initialize it again. > > When the library is dynamically loaded using mysqlXXdyn.pp, shall I call > these fun

Re: [fpc-devel] Call initialisation of library automatically in unit-initialization?

2008-12-03 Thread Marco van de Voort
In our previous episode, Joost van der Sluis said: > When you use the MySQL client, you have to call myslq_library_init to > initialise the library, and mysql_library_end to de-initialize it again. > > When the library is dynamically loaded using mysqlXXdyn.pp, shall I call > these functions autom

[fpc-devel] Call initialisation of library automatically in unit-initialization?

2008-12-03 Thread Joost van der Sluis
Hi all, When you use the MySQL client, you have to call myslq_library_init to initialise the library, and mysql_library_end to de-initialize it again. When the library is dynamically loaded using mysqlXXdyn.pp, shall I call these functions automatically? Or should we leave it to the programmer? (