Re: [lazarus] SQLite 3 --> Capture FieldValues into a variable

2007-11-27 Thread Joost van der Sluis
Op maandag 26-11-2007 om 23:50 uur [tijdzone +0100], schreef Joost van der Sluis: > Op maandag 26-11-2007 om 15:05 uur [tijdzone +0100], schreef Roberto > Padovani: > > 2007/11/26, Daniel Rincón García <[EMAIL PROTECTED]>: > > To the Great Guys of the lazarus project: > > > > I am finishing a medi

Re: [lazarus] SQLite 3 --> Capture FieldValues into a variable

2007-11-26 Thread Joost van der Sluis
Op maandag 26-11-2007 om 15:05 uur [tijdzone +0100], schreef Roberto Padovani: > 2007/11/26, Daniel Rincón García <[EMAIL PROTECTED]>: > To the Great Guys of the lazarus project: > > I am finishing a medium size project with lazarus + sqlite3, for which > I had study and experiment a lot due to th

Re: [lazarus] SQLite 3 --> Capture FieldValues into a variable

2007-11-26 Thread Joost van der Sluis
Op maandag 26-11-2007 om 13:17 uur [tijdzone +0100], schreef Daniel Rincón García: > Hi, I need to capture the FieldValues of a SQLite database into a > string variable. > > If I do it: > >while not dsTest.EOF do > begin > DataToSend := DataToSend + > dsT

Re: [lazarus] SQLite 3 --> Capture FieldValues into a variable

2007-11-26 Thread John
Daniel Rincón García wrote: Hi, I need to capture the FieldValues of a SQLite database into a string variable. If I do it:    while not dsTest.EOF do     begin DataToSend := DataToSend +     dsTest.FieldValues ['Code'] + '\' +   

Re: [lazarus] SQLite 3 --> Capture FieldValues into a variable

2007-11-26 Thread willem
Roberto Padovani wrote: 2007/11/26, Daniel Rincón García <[EMAIL PROTECTED]>: Hi, I need to capture the FieldValues of a SQLite database into a string variable. If I do it: while not dsTest.EOF do begin DataToSend := DataToSend + dsTest.FieldValues [

Re: [lazarus] SQLite 3 --> Capture FieldValues into a variable

2007-11-26 Thread Roberto Padovani
2007/11/26, Daniel Rincón García <[EMAIL PROTECTED]>: > Hi, I need to capture the FieldValues of a SQLite database into a string > variable. > > If I do it: > >while not dsTest.EOF do > begin > DataToSend := DataToSend + > dsTest.FieldValues ['Code'] + '\'