Re: [fpc-pascal] [Lazarus] FreePascal and Lazarus Foundation

2016-06-27 Thread Tony Caduto
What events of the last few days is Boian talking about in his announcement? On Jun 27, 2016 5:51 AM, "Victor Campillo" wrote: On 27/06/16 10:00, Michael Van Canneyt wrote: How did you manage to find this site ? I didn't make a public announcement yet :-) But seems that somebody else did it, se

Re: [fpc-pascal] Sqldb - How to pass an array of values as a param to be used with SQL IN operator?

2016-04-10 Thread Tony Caduto
Well, I guess if there is no user input going into the query it's not a big dea,l of course if there is you should at least sanitize it to prevent injection. On Apr 10, 2016 2:39 PM, "Luiz Americo Pereira Camara" < luizameri...@gmail.com> wrote: > > > 2016-04-

Re: [fpc-pascal] Sqldb - How to pass an array of values as a param to be used with SQL IN operator?

2016-04-10 Thread Tony Caduto
re dealing with integers only, you'll just need to make sure that every entry you're substituting for is actually an integer. On Sun, Apr 10, 2016 at 10:01 AM, Tony Caduto wrote: > Did you try putting quotes around the param ID in the sql query? > in(":myparam") > I am

Re: [fpc-pascal] Sqldb - How to pass an array of values as a param to be used with SQL IN operator?

2016-04-10 Thread Tony Caduto
Did you try putting quotes around the param ID in the sql query? in(":myparam") I am guessing it's the commas that are the problem. Sqlite will accept double qoutes as will MySQL postgres will not though. On Apr 10, 2016 7:40 AM, "leledumbo" wrote: > > But until now i havent figured a way to pas

Re: [fpc-pascal] FPC generated executables and digital signatures

2016-04-08 Thread Tony Caduto
time > or not ask you at all. > > But this only works with paid for certificates that can trace back to one > of the recognized CAs. > > Tony Caduto wrote: > >> >> Graeme, >> >> Glad to help, that's always annoyed me as well but have never had tim

Re: [fpc-pascal] FPC generated executables and digital signatures

2016-04-08 Thread Tony Caduto
Graeme, Glad to help, that's always annoyed me as well but have never had time to fully investigate it, I imagine it's due to a signing issue like you originally thought. If you find anything out let us know 😁 On Apr 8, 2016 8:01 AM, "Graeme Geldenhuys" wrote: On 2016-04-0

Re: [fpc-pascal] FPC generated executables and digital signatures

2016-04-08 Thread Tony Caduto
I only get that if I run the exe from a shared network drive on Windows 7 and up. Maybe your not enabling the manifest, the laz ide does it automatically for win32. On Apr 8, 2016 6:20 AM, "Graeme Geldenhuys" wrote: > Hi, > > I don't visit Windows much, but was doing some testing on a Win7 VM. >

Re: [fpc-pascal] Bug in FPC 3.0.0 (was: Bug in FPC 3.0.0?)

2016-02-23 Thread Tony Caduto
I have the latest version of Devart pgdac and virtualtable.pas compiles fine. On Feb 23, 2016 3:33 AM, "Serguei TARASSOV" wrote: > Hello, > > Sorry, my previous example was not complete. > Here is a problem detected when compiling UniDAC 6.2.8. > Taken from real code in VirtualTable.pas > > progr

Re: [fpc-pascal] Delphi compiler team left Embarcadero/Idera

2016-02-22 Thread Tony Caduto
Hmm maybe sad for Delphi users, I myself have not used Delphi since 2012, hopefully Delphi users see the light and start using Lazarus and FPC. It's not surprising that people are leaving embarcadero, it sucks being on the end of a dirty acquisition stick __

Re: [fpc-pascal] Issue with Linking

2015-08-21 Thread Tony Caduto
Msmw.amaal On Aug 19, 2015 4:02 PM, "Chris Moody" wrote: > Hi all, > > So I reset up my Pi and I was able to get the current version of FPC to > get as far as the linking stage, at which point it shows this: > > /usr/bin/ld: warning: link.res contains output sections; did you forget -T? > /home/p

Re: [fpc-pascal] MigraterrrrRzr t ttt f bug tracker bugtracker

2014-08-09 Thread Tony Caduto
_2bt On Aug 5, 2014 2:37 AM, "Graeme Geldenhuys" wrote: > On 2014-08-04 08:21, Michael Van Canneyt wrote: > > Since 500 million records do not fit in memory, > > Time for a RAM upgrade. ;-) > > > Regards, > - Graeme - > > -- > fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal > htt

Re: [fpc-pascal] newbie question: using fpc in linux

2013-04-03 Thread Tony Caduto
If your just doing Web Development you can cross compile for linux on windows, it's not that bad, you do need to build the cross compiler and then copy some of the linux libs to your development pc. It's totally possible and then you just copy the compiled app to your server, you don't need fpc

Re: [fpc-pascal] TurboPower FlashFiler for Free Pascal

2012-10-23 Thread Tony Caduto
I would say it's a decent database as nexus db for Delphi is a fork of it. But why not use sqlite? It can be fully embedded as well, there is at least 1 Delphi sqlite component set that does not require the sqlite dll. On Oct 23, 2012 8:25 AM, "Graeme Geldenhuys" wrote: > Hi, > > Yeah, a catchy

[fpc-pascal] cross compiler linker issue win32 to Linux

2012-05-07 Thread Tony Caduto
Hi, I have the cross compiler setup(win32 to linux) and I can compile most of my apps just fine except for one that is a daemon and uses cthreads and cmem in the uses. It does not give any errors except for linker error and if I change the verbosity to show all it still does not show anything mean

[fpc-pascal] tzipper issue(zipper.pp)

2012-02-08 Thread Tony Caduto
Hi, I am trying to port a Delphi app to Freepascal/Lazarus. The original app zipped the contents of a memo(using vclzip) which was saved to a stream, and the zip does not get stored in a file, rather a tmemorystream, which is then sent to a client app via a socket. So I noticed the tzipper class i