Re: [fpc-pascal] DBF Field name length and fpdbfexport

2011-09-05 Thread Michael Van Canneyt
On Tue, 6 Sep 2011, Reinier Olislagers wrote: On 5-9-2011 23:20, Michael Van Canneyt wrote: On Mon, 5 Sep 2011, Reinier Olislagers wrote: Turns out the dbf export code needs at least another patch. DBF export missed support for ftfloat and other field types. Issue + patch at http://bugs.fre

Re: [fpc-pascal] DBF Field name length and fpdbfexport

2011-09-05 Thread Reinier Olislagers
On 5-9-2011 23:20, Michael Van Canneyt wrote: > On Mon, 5 Sep 2011, Reinier Olislagers wrote: >> Turns out the dbf export code needs at least another patch. >> DBF export missed support for ftfloat and other field types. >> >> Issue + patch at >> http://bugs.freepascal.org/view.php?id=20160 > I hav

Re: [fpc-pascal] DBF Field name length and fpdbfexport

2011-09-05 Thread Michael Van Canneyt
On Mon, 5 Sep 2011, Reinier Olislagers wrote: On 2-9-2011 14:38, Reinier Olislagers wrote: I think I've also found the solution to http://bugs.freepascal.org/view.php?id=20069 (patch attached), so if somebody would be so kind to review & apply them, I'd be very happy. Turns out the dbf expo

Re: [fpc-pascal] DBF Field name length and fpdbfexport

2011-09-05 Thread Reinier Olislagers
On 2-9-2011 14:38, Reinier Olislagers wrote: > I think I've also found the solution to > http://bugs.freepascal.org/view.php?id=20069 > (patch attached), so if somebody would be so kind to review & apply > them, I'd be very happy. Turns out the dbf export code needs at least another patch. DBF exp

Re: [fpc-pascal] TField.Attributeset explanation?

2011-09-05 Thread michael . vancanneyt
On Mon, 5 Sep 2011, Reinier Olislagers wrote: On 5-9-2011 11:39, michael.vancann...@wisa.be wrote: On Mon, 5 Sep 2011, Alex Shishkin wrote: 05.09.2011 12:30, michael.vancann...@wisa.be пишет: Forget the 'Attributeset' property. It's not used in FPC. (in fact, I don't even know what it's for

Re: [fpc-pascal] TField.Attributeset explanation?

2011-09-05 Thread Reinier Olislagers
On 5-9-2011 11:39, michael.vancann...@wisa.be wrote: > On Mon, 5 Sep 2011, Alex Shishkin wrote: >> 05.09.2011 12:30, michael.vancann...@wisa.be пишет: >> Forget the 'Attributeset' property. It's not used in FPC. >> >> (in fact, I don't even know what it's for or where it comes from) >> >> Michael.

Re: [fpc-pascal] FPCDocs Git repository

2011-09-05 Thread Reinier Olislagers
On 5-9-2011 12:19, Graeme Geldenhuys wrote: > I'm a bit busy at work at the moment, but will see if I can setup a > Git mirror in a few days time. > > Regards, > - Graeme - Baie dankie dat jy dit wil doen! Thanks a lot in advance, Reinier ___ fpc-pasc

Re: [fpc-pascal] FPCDocs Git repository

2011-09-05 Thread Graeme Geldenhuys
I'm a bit busy at work at the moment, but will see if I can setup a Git mirror in a few days time. Regards, - Graeme - On 05/09/2011, Reinier Olislagers wrote: > Hi all, goeiemore Graeme ;), > > While there are git repositories for FPC and Lazarus, there doesn't seem > to be one for FPCDocs.

Re: [fpc-pascal] TField.Attributeset explanation?

2011-09-05 Thread michael . vancanneyt
On Mon, 5 Sep 2011, Alex Shishkin wrote: 05.09.2011 12:30, michael.vancann...@wisa.be пишет: On Mon, 5 Sep 2011, Reinier Olislagers wrote: That is normal. Just set the 'Required' property of the CUSTNO field to False. Forget the 'Attributeset' property. It's not used in FPC. (in fact, I

Re: [fpc-pascal] TField.Attributeset explanation?

2011-09-05 Thread Alex Shishkin
05.09.2011 12:30, michael.vancann...@wisa.be пишет: On Mon, 5 Sep 2011, Reinier Olislagers wrote: That is normal. Just set the 'Required' property of the CUSTNO field to False. Forget the 'Attributeset' property. It's not used in FPC. (in fact, I don't even know what it's for or where it co

Re: [fpc-pascal] TField.Attributeset explanation?

2011-09-05 Thread Reinier Olislagers
On 5-9-2011 10:30, michael.vancann...@wisa.be wrote: > On Mon, 5 Sep 2011, Reinier Olislagers wrote: >> When inserting records with an empty CUST_NO, I get an error that >> CUST_NO is required. > > That is normal. > > Just set the 'Required' property of the CUSTNO field to False. AAARGGH. A mill

[fpc-pascal] FPCDocs Git repository

2011-09-05 Thread Reinier Olislagers
Hi all, goeiemore Graeme ;), While there are git repositories for FPC and Lazarus, there doesn't seem to be one for FPCDocs. Is a public git repository available for FPCDocs? The reason: I'm looking into extending my version of LazUpdater https://bitbucket.org/reiniero/lazupdater_baremetal to su

Re: [fpc-pascal] TField.Attributeset explanation?

2011-09-05 Thread michael . vancanneyt
On Mon, 5 Sep 2011, Reinier Olislagers wrote: Hi all, Working on the SQLDB Tutorial1 on the wiki. I'm struggling with getting dbgrid-driven inserts to work. Using Firebird employee.fdb CUSTOMER table; CUST_NO is an integer primary key with Firebird generator/sequence + trigger => sort of an

[fpc-pascal] TField.Attributeset explanation?

2011-09-05 Thread Reinier Olislagers
Hi all, Working on the SQLDB Tutorial1 on the wiki. I'm struggling with getting dbgrid-driven inserts to work. Using Firebird employee.fdb CUSTOMER table; CUST_NO is an integer primary key with Firebird generator/sequence + trigger => sort of an autonumber/autoinc field. When inserting records w