Re: [fpc-pascal] Win64 SEH patch fixes some Firebird embedded bugs

2012-06-22 Thread Reinier Olislagers
On 21-6-2012 11:39, michael.vancann...@wisa.be wrote: On Thu, 21 Jun 2012, Reinier Olislagers wrote: Thought I'd let everybody know in case they run into Firebird x64 (embedded) problems on Windows and to indicate that implementing the SEH patch might be a good idea... Well, I was going to

RE : [fpc-pascal] Postgresql Concurrent Transactions

2012-06-22 Thread Ludo Brands
Each manager thread has its own Connection, Transaction, and TQuery. Each manager can handle potentially thousands of sockets Each server instance (1 process) can have up to ~100 manager threads. Each Manager executes socket commands that translate at some point, into a Database, Select,

Re: [fpc-pascal] Adding method dynamically to a class

2012-06-22 Thread Jorge Aldo G. de F. Junior
Use event properties (Properties to a procedural type) Adding completely free methods to a class makes no sense. By free i mean a method that has no clear signature (parameters and result type) because calling them will be a nightmare (You will have to do the compiler work and build your own

[fpc-pascal] AUTO: Luca Manganelli è assente dall'ufficio

2012-06-22 Thread luca_manganelli
Sono fuori dall'ufficio da Ven 22/06/2012 fino a Lun 16/07/2012. Nota: Questa è una risposta automatizzata al messaggio Re: [fpc-pascal] Adding method dynamically to a class inviata il 22/06/2012 15.25.21. Questa è l'unica notifica che verrà ricevuta mentre la persona è

[fpc-pascal] encryption and decryption

2012-06-22 Thread Rainer Stratmann
Does someone know how to do encryption and decryption with keys? ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] encryption and decryption

2012-06-22 Thread Jorge Aldo G. de F. Junior
Theres a blowfish encryption system in freepascal http://www.freepascal.org/docs-html/fcl/blowfish/index.html 2012/6/22 Rainer Stratmann rainerstratm...@t-online.de: Does someone know how to do encryption and decryption with keys? ___ fpc-pascal

Re: [fpc-pascal] DOM and namespaces with prefix

2012-06-22 Thread Daniel Gaspary
On Tue, Jun 19, 2012 at 10:11 AM, Torsten Bonde Christiansen t...@epidata.info wrote:  DDIInstance := XMLDoc.CreateElementNS('ddi:instance:3_0', 'DDIInstance');  DDIInstance.Prefix := 'ns1';        // this gives me: ns1:DDIInstance xmlns:ns1=ddi:instance:3_0 which is great.  // now I would

Re: [fpc-pascal] encryption and decryption

2012-06-22 Thread silvioprog
2012/6/22 Jorge Aldo G. de F. Junior jagf...@gmail.com: Theres a blowfish encryption system in freepascal http://www.freepascal.org/docs-html/fcl/blowfish/index.html 2012/6/22 Rainer Stratmann rainerstratm...@t-online.de: Does someone know how to do encryption and decryption with keys?