Re: [fpc-pascal] FPC scripting suport

2008-05-29 Thread Lee Jenkins
MihaiR wrote: Hello all, Is there any component for FPS/Lazarus I can succesfully use for scripting? I'd like to build an application that can be enhanced by some simple functions stored into an external script file so that functions can be edited. There are simple functions with few parameters

[fpc-pascal] fpdoc enhancements

2008-05-29 Thread Michael Van Canneyt
Hi, At the request of some people on the lists, I added the following enhancement to fpdoc: If a method has no documentation node, the documentation will be searched in the ancestor tree. The first parent with a documented node will be used, and will be referred to from all overview pages. This

Re: [fpc-pascal] Connecting SQL components to a propriety SQL server

2008-05-29 Thread Andreas Berger
I have a friend that has a product which is composed of an embedded system spread around Brazil and communicating with a central PC. I am convincing him to migrate some of his PC tools to Pascal in order to ease my help for him. The question I have is this: He has his own small SQL server on so

Re: [fpc-pascal] another pqconnection patch

2008-05-29 Thread Joao Morais
Joao Morais wrote: There are other problems, at least with timestamp field. Please wait another patch soon. The following patch fixes the storage of floating point, time and timestamp fields on a pgsql database. Patch is against trunk. Joao Morais Index: packages/fcl-db/src/sqldb/postgres/p

Re: [fpc-pascal] Connecting SQL components to a propriety SQL server

2008-05-29 Thread Michael Van Canneyt
On Thu, 29 May 2008, Andreas Berger wrote: > I have a friend that has a product which is composed of an embedded system > spread around Brazil and communicating with a central PC. I am convincing him > to migrate some of his PC tools to Pascal in order to ease my help for him. > The question I h

[fpc-pascal] Connecting SQL components to a propriety SQL server

2008-05-29 Thread Andreas Berger
I have a friend that has a product which is composed of an embedded system spread around Brazil and communicating with a central PC. I am convincing him to migrate some of his PC tools to Pascal in order to ease my help for him. The question I have is this: He has his own small SQL server on s

Re: [fpc-pascal] another pqconnection patch

2008-05-29 Thread Joao Morais
Joost van der Sluis wrote: Op woensdag 28-05-2008 om 18:33 uur [tijdzone -0300], schreef Joao Morais: the following patch fixes the storage of floating point numbers where the decimal point isn't a dot. Two questions: does postgres always request a dot as decimal point? Yes. Or is 'str' lo

Re: [fpc-pascal] another pqconnection patch

2008-05-29 Thread Jonas Maebe
On 29 May 2008, at 11:09, Joost van der Sluis wrote: Two questions: does postgres always request a dot as decimal point? And dos your code guarantee to use a dot as decimal point? Or is 'str' locale-dependent? str() is never locale-dependent. Jonas

Re: [fpc-pascal] another pqconnection patch

2008-05-29 Thread Joost van der Sluis
Op woensdag 28-05-2008 om 18:33 uur [tijdzone -0300], schreef Joao Morais: > the following patch fixes the storage of floating point numbers where > the decimal point isn't a dot. Two questions: does postgres always request a dot as decimal point? And dos your code guarantee to use a dot as decim

Re: [fpc-pascal] pqconnection patch

2008-05-29 Thread Joost van der Sluis
Op woensdag 28-05-2008 om 13:52 uur [tijdzone -0300], schreef Joao Morais: > The following patch fixes the reading of a bytea field from a PgSQL > database. Thanks, applied. > Btw is there someone working on pg's blob storage? I don't know anything about pg's blob storage, except for the separ