User Darian Miller - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T19:05:15Z http://stackoverflow.com/feeds/user/35696 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1634832/delphi-2010-or-2007-for-upgrading-delphi-3-project/1634921#1634921 0 Answer by Darian Miller for Delphi 2010 or 2007 for upgrading Delphi 3 project? Darian Miller 2009-10-28T02:36:49Z 2009-10-28T02:36:49Z <p>"That depends"</p> <p>It depends on the number of 3rd party controls and the current state of those controls. (Are they still on the market with updates for 2007 and 2010?)</p> <p>It depends on code size and code quality. If you have a large, loosely managed code base it will be a harder path to 2010.</p> <p>It also depends (largely) on project input/outputs... are you reading from files/databases/communications? How will they react to Unicode, or can you easily narrow down all of those touch points to ensure proper handling?</p> <p>One other major dependancy is the life of the application... "Going Unicode" now might serve you better if you are going to support this application over the long term as eventually they'll stop selling 2007 and you'll be forced into it.</p> <p>I own 2009 and have built minor applications/utilities with it, but the main work is still in 2007, 2006, D7, and D5 depending on project. </p> http://stackoverflow.com/questions/1458842/need-to-open-and-write-a-dbase4-table-which-delphi-route-please/1460440#1460440 0 Answer by Darian Miller for Need to open and write a DBASE4 table. Which Delphi route please? Darian Miller 2009-09-22T14:31:49Z 2009-09-22T14:31:49Z <p>Check out the components on <a href="http://www.torry.net/pages.php?id=564" rel="nofollow">Torry</a>.net</p> <p>I've used Halcyon in the past and it's pretty good. </p> http://stackoverflow.com/questions/357233/what-dead-programming-languages-do-you-know/358364#358364 12 Answer by Darian Miller for What dead programming languages do you know? Darian Miller 2008-12-11T03:23:41Z 2009-09-13T22:38:54Z <p>Clipper. Summer 1987 was a grand replacement for dBase III+. Clipper 5.01 was even better. A variant still exists in Xbase++</p> http://stackoverflow.com/questions/1377002/do-you-use-scimore-sql-database 0 Do you use Scimore SQL database ? Darian Miller 2009-09-04T02:56:51Z 2009-09-04T19:04:35Z <p>There's a database engine that looks amazing for a free tool and that is <a href="http://www.scimore.com/" rel="nofollow">Scimore</a>. </p> <p>Have you had much experience with it? If so, how does it rate..particularly against Firebird? How resilient/self reliant is it? (Meaning how much downtime/maintenance is expected?) The scale out capabilities also look very interesting.</p> <p>I just downloaded it and have been playing around and so far it looks good. I had been looking for an easy to deploy single-user type embedded database (which Scimore has an option) and was toying with MS SQL Compact Edition and SQLite and remembered this database from a trial a few years ago. (Windows platform)</p> <p>I was about ready to settle in on SQLite but started thinking about other projects which are multi-user and wanted to stick with a single solution...which is why I started looking at Firebird as well. </p> http://stackoverflow.com/questions/1055031/need-an-embedded-in-memory-database/1055133#1055133 1 Answer by Darian Miller for Need an embedded/In Memory Database Darian Miller 2009-06-28T15:48:35Z 2009-06-28T15:48:35Z <p>ComponentAce offers AbsoluteDatabase with in memory option <a href="http://www.componentace.com/bde%5Freplacement%5Fdatabase%5Fdelphi%5Fabsolute%5Fdatabase.htm" rel="nofollow">AbsoluteDatabase</a></p> http://stackoverflow.com/questions/1055031/need-an-embedded-in-memory-database/1055128#1055128 3 Answer by Darian Miller for Need an embedded/In Memory Database Darian Miller 2009-06-28T15:47:30Z 2009-06-28T15:47:30Z <p>Components4Developers has one that's been around a long time <a href="http://www.components4developers.com/" rel="nofollow">kbmMemTable</a></p> http://stackoverflow.com/questions/1055031/need-an-embedded-in-memory-database/1055124#1055124 2 Answer by Darian Miller for Need an embedded/In Memory Database Darian Miller 2009-06-28T15:44:55Z 2009-06-28T15:44:55Z <p>AidAim has one <a href="http://www.aidaim.com/in-memory%5Fsql%5Fdatabase%5Fdelphi.htm" rel="nofollow">SQLMemTable</a></p> http://stackoverflow.com/questions/1041421/ansistring-return-values-from-a-delphi-2007-dll-in-a-delphi-2009-application/1046675#1046675 0 Answer by Darian Miller for AnsiString return values from a Delphi 2007 DLL in a Delphi 2009 application Darian Miller 2009-06-25T23:17:17Z 2009-06-25T23:17:17Z <p>You'll likely just need to convert the DLL to 2009. According to Embarcadero, the conversion to 2009 is 'easy' and should take you no time at all.</p> http://stackoverflow.com/questions/1029309/tidtcpserver-upgrade-problems/1030502#1030502 0 Answer by Darian Miller for TidTCPServer Upgrade Problems Darian Miller 2009-06-23T03:30:34Z 2009-06-23T03:30:34Z <p>I believe Indy 9 came with Delphi 6 and Indy 10 does come with Delphi 2007 so the problem appears to be the differences between Indy 9 and Indy 10. Unfortunately, Indy 10 was not always backwards compatible.</p> <p>Here is a brief overview of some of these changes <a href="http://www.indyproject.org/docsite/html/frames.html?frmname=topic&amp;frmfile=ChangesObjectHierarchy.html" rel="nofollow">Object Hierarchy Changes in Indy 10</a></p> <p>The interesting part is you say the Net client connects fine...assumedly with the unmodified version of your server simply recompiled with Delphi 2007? If so then it sounds like you may have Indy 10 already installed to build your Delphi 6 system...</p> http://stackoverflow.com/questions/1004838/transition-to-unicode-for-an-application-that-handles-text-files/1005191#1005191 1 Answer by Darian Miller for Transition to Unicode for an application that handles text files Darian Miller 2009-06-17T05:02:11Z 2009-06-17T05:02:11Z <p>If you are going to take Unicode input from the GUI, what's the strategy going to be for converting it to ASCII output? (This is an assumption as you mention writing Ansi text back out, assumedly for these non-Unicode based applications that you are not going to rewrite and assumedly don't have the sourcecode for.) I'd suggest staying with AnsiString throughout the app until these other apps are Unicode enabled. If your main job of your application is analyzing non-Unicode ASCII type files, then why switch to Unicode internally? If the main job of your application involves having a better Unicode enabled GUI then go Unicode. I don't believe that there's enough info presented to decide a proper choice. </p> <p>If there is no chance for non-easily translatable characters to be written back out for these non-Unicode applications, then the suggestion for UTF-8 is the likely way to go. However, if there is a chance, then how are the non-Unicode applications going to handle multi-byte characters? How are you going to convert to (assumedly) the basic ASCII character set?</p> http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/313348#313348 17 Answer by Darian Miller for What is the worst interviewee answer? Darian Miller 2008-11-24T03:27:56Z 2009-06-14T04:48:38Z <p>Interviewing an experienced programmer and one of the questions was "How would a typical day go at your previous job?" Answer: "Got coffee in the morning as I'm not much of a morning person...so we would mainly just talk about the project or whatever. I'm not much good at night either as I get tired. I'm really good only between 11 and 3. Plus I like to golf so I would want some afternoons off."</p> http://stackoverflow.com/questions/941087/delphi-transparent-proxy-for-a-tcp-connection/943010#943010 0 Answer by Darian Miller for Delphi transparent proxy for a TCP connection Darian Miller 2009-06-03T04:08:10Z 2009-06-03T04:08:10Z <p>IPWorks from nSoftware should be considered as a commercial alternative to Synapse. They also have some Biztalk adapters available. </p> <p>I've used both Synapse and IPWorks, and they are both quite good. I haven't used the referenced BizTalk adapters. </p> <p><a href="http://www.nsoftware.com/products/biztalk/" rel="nofollow">BizTalk Adapters</a></p> <p><a href="http://www.nsoftware.com/ipworks/" rel="nofollow">IPWorks</a></p> http://stackoverflow.com/questions/723352/creating-a-stored-procedure-to-return-the-rowcount-of-another-stored-procedure/928688#928688 0 Answer by Darian Miller for Creating a stored procedure to return the rowcount of another stored procedure Darian Miller 2009-05-30T01:04:39Z 2009-05-30T01:04:39Z <p>If you are really trying to fine tune as much as possible, then you will have to change the source stored procedure. If you are looking at performance, then returning the rowset just to get the count is not something to even consider.</p> http://stackoverflow.com/questions/927794/how-do-i-return-all-values-from-a-stored-procedure/928502#928502 6 Answer by Darian Miller for How do I return all values from a stored procedure? Darian Miller 2009-05-29T23:09:44Z 2009-05-29T23:09:44Z <p>Call Open to get a dataset returned</p> <pre><code>StoredProc.Open; while not StoredProc.EOF do begin Memo1.Lines.Add(StoredProc.FieldByName('xyz').Value); StoredProc.Next; end; </code></pre> http://stackoverflow.com/questions/878403/tadoconnection-and-pooling/880747#880747 0 Answer by Darian Miller for TADoConnection and pooling Darian Miller 2009-05-19T02:37:52Z 2009-05-19T02:37:52Z <p>Another reason for increased number of connections is multiple open queries active on the same connection.</p> <p>Say you have code like</p> <pre><code>db := TAdoConnection.Create() qry1 := TAdoQuery.Create(); qry2 := TAdoQuery.Create(); qry1.connection := db; qry2.connection := db; qry1.SQL.Text := 'select * from whatever'; qry1.open; while not qry1.eof do begin x := qry1.fieldbyname('fld').AsString; qry2.SQL.Text := 'select * from elsewhere where SomeField='+ QuotedStr(x); qry2.Open; ..do something.. qry2.Close; qry1.Next; end; </code></pre> <p>The qry2.Open() will cause another connection to be created <em>which is not pooled</em> </p> <p>If you have code like this, store the results of qry1 to a local place and then do the work of qry2. In this case, you will maintain only one connection. </p> <p>In rough terms this looks more like:</p> <pre><code>db := TAdoConnection.Create() qry1 := TAdoQuery.Create(); qry2 := TAdoQuery.Create(); str := TStringList.Create(); qry1.connection := db; qry2.connection := db; qry1.SQL.Text := 'select * from whatever'; qry1.open; while not qry1.eof do begin x := qry1.fieldbyname('fld').AsString; str.Add(x); qry1.Next; end; qry1.Close; for i := 0 to str.Count-1 do begin qry2.SQL.Text := 'select * from elsewhere where SomeField='+ QuotedStr(str[i]); qry2.Open; ..do something.. qry2.Close; end </code></pre> http://stackoverflow.com/questions/878403/tadoconnection-and-pooling/880717#880717 2 Answer by Darian Miller for TADoConnection and pooling Darian Miller 2009-05-19T02:20:14Z 2009-05-19T02:20:14Z <p>By default, ADO database connections to SQL Server are pooled with no work needed by you. The pooling behavior can be altered by your connection string. What's your connection string look like?</p> <p>Just keep your connection string exactly the same and create/free a ADO Connection within your thread and let the ADO runtime handle the pooling. The number of connections per process will usually equal to the max number of "recent" simultaneous connections plus a few for a buffer.</p> http://stackoverflow.com/questions/835573/is-there-an-implementation-of-getopt-for-delphi/835708#835708 2 Answer by Darian Miller for Is there an implementation of "getopt" for Delphi? Darian Miller 2009-05-07T16:27:32Z 2009-05-07T16:27:32Z <p>Nothing built in - but you can make one pretty easily. This should be close to what you are used to</p> <pre><code>TsoCommandLineParser = class private fArguments:TStringList; public constructor Create(); destructor Destroy(); override; function GetOpt(const pArgument:string; const pDefaultValue:string = ''):string; end; constructor TsoCommandLineParser.Create(); var i:Integer; begin inherited Create(); fArguments := TStringList.Create(); for i := 1 to ParamCount() do begin fArguments.Add(ParamStr(i)); end; end; destructor TsoCommandLineParser.Destroy(); begin fArguments.Free(); inherited Destroy(); end; function TsoCommandLineParser.GetOpt(const pArgument:string; const pDefaultValue:string = ''):string; var i:Integer; begin i := fArguments.IndexOfName(pArgument); if i &gt; -1 then begin Result := fArguments.ValueFromIndex[i]; end else begin Result := pDefaultValue; end; end; </code></pre> http://stackoverflow.com/questions/764489/delphi-region-compiler-directive-backwards-compatible-unit-files 1 Delphi Region compiler directive - backwards compatible unit files? Darian Miller 2009-04-18T23:34:48Z 2009-04-20T07:39:57Z <p>Given the desire to use the useful Region compiler directive in unit files, what's the best approach to allow these same units from being used in previous versions of Delphi? There doesn't seem to be a 'decent' approach. (Desired IDE version is Delphi 7)</p> <p>I like having Regions above the method definitions to hide/display the method definition help and version history comments but I'd have to surround the Region directives with other compiler directives, which kinda kills the 'cleaness' of region compiler directives.</p> <p>I suppose a preprocessor could be written to comment out all Region/EndRegion directives if using a version of Delphi which doesn't support regions..and add then back for later versions?</p> <p>I'm not 100% switched to Delphi 2009 and need to support multiple IDE versions.</p> http://stackoverflow.com/questions/738677/how-to-enable-oledb-resource-pooling-in-a-delphi-7-app/739149#739149 0 Answer by Darian Miller for How to enable OLEDB resource pooling in a Delphi 7 app Darian Miller 2009-04-10T23:24:46Z 2009-04-10T23:24:46Z <p>You need to keep one instance of the connection open at all times...if it drops to zero, then ADO will re-establish the connection to authenticate the user.</p> http://stackoverflow.com/questions/734443/delphi-7-ado-connection-pooling-outside-of-iis/738248#738248 0 Answer by Darian Miller for Delphi 7 ADO connection pooling outside of IIS Darian Miller 2009-04-10T17:06:28Z 2009-04-10T17:06:28Z <p>It's hard to say based on the info given, but connection pooling is definitely based off of the connection string - if the connection string is exactly the same then the connection can be pooled... it sounds like your outside application may be altering the connection string?</p> <p>IIS isn't pooling ADO connections. Is is likely caching the ISAPI dll though. Are you starting/stopping your outside application continuously? Or is it a single run causing multiple login events? </p> http://stackoverflow.com/questions/510031/list-of-delphi-data-types-with-atomic-read-write-operations 4 List of Delphi data types with 'atomic' read/write operations? Darian Miller 2009-02-04T04:09:52Z 2009-03-21T18:49:26Z <p>Are 'boolean' variables thread-safe for reading and writing from any thread? I've seen some newsgroup references to say that they are. Are any other data types available? (Enumerated types, short ints perhaps?)</p> <p>It would be nice to have a list of all data types that can be safely read from any thread and another list that can also be safely written to in any thread without having to resort to various synchronization methods.</p> http://stackoverflow.com/questions/605580/indy-write-buffering-efficient-tcp-communication/609133#609133 2 Answer by Darian Miller for Indy Write Buffering / Efficient TCP communication Darian Miller 2009-03-04T03:38:53Z 2009-03-04T03:38:53Z <p>Write buffering is disabled by default. You can check write buffering to see if it's active in your code by testing the fConnection.IOHandler.WriteBufferingActive property.</p> <p>As far as the best way to send an integer... 'it depends' on your protocol and overall goals. Specifically, use FConnection.IOHandler.Write() as there are overloaded methods to write just about any type of data, including an integer.</p> <p>Taken from IdIOHandler:</p> <pre><code>// Optimal Extra Methods // // These methods are based on the core methods. While they can be // overridden, they are so simple that it is rare a more optimal method can // be implemented. Because of this they are not overrideable. // // // Write Methods // // Only the ones that have a hope of being better optimized in descendants // have been marked virtual procedure Write(const AOut: string; const AEncoding: TIdEncoding = enDefault); overload; virtual; procedure WriteLn(const AEncoding: TIdEncoding = enDefault); overload; procedure WriteLn(const AOut: string; const AEncoding: TIdEncoding = enDefault); overload; virtual; procedure WriteLnRFC(const AOut: string = ''; const AEncoding: TIdEncoding = enDefault); virtual; procedure Write(AValue: TStrings; AWriteLinesCount: Boolean = False; const AEncoding: TIdEncoding = enDefault); overload; virtual; procedure Write(AValue: Byte); overload; procedure Write(AValue: Char; const AEncoding: TIdEncoding = enDefault); overload; procedure Write(AValue: LongWord; AConvert: Boolean = True); overload; procedure Write(AValue: LongInt; AConvert: Boolean = True); overload; procedure Write(AValue: SmallInt; AConvert: Boolean = True); overload; procedure Write(AValue: Int64; AConvert: Boolean = True); overload; procedure Write(AStream: TStream; ASize: Int64 = 0; AWriteByteCount: Boolean = False); overload; virtual; </code></pre> <p>Another question you had was "Does it make a difference whether I use multiple write commands in a row or pack things together in a byte array and send that once?" For the majority of cases, yes it makes a difference. For highly stressed servers you are going to have to get more involved in how bytes are sent back and forth, but at this level you should abstract out your sends into a separate protocol type class that builds the data to be sent and sends it in a burst and have a receiving protocol that receives a bunch of data and processes it as a complete unit instead of breaking things down to sending/receiving an integer, character, byte array, etc..</p> <p>As a very rough quick example:</p> <pre><code>TmyCommand = class(TmyProtocol) private fCommand:Integer; fParameter:String; fDestinationID:String; fSourceID:String; fWhatever:Integer; public property Command:Integer read fCommand write fCommand; ... function Serialize; procedure Deserialize(Packet:String); end; function TmyCommand.Serialize:String; begin //you'll need to delimit these to break them apart on the other side result := AddItem(Command) + AddItem(Parameter) + AddItem(DestinationID) + AddItem(SourceID) + AddItem(Whatever); end; procedure TMyCommand.Deserialize(Packet:String); begin Command := StrToInt(StripOutItem(Packet)); Parameter := StripOutItem(Packet); DesintationID := StripOutItem(Packet); SourceID := StripOutItem(Packet); Whatever := StrToInt(StripOutItem(Packet)); end; </code></pre> <p>Then send this via:</p> <pre><code> FConnection.IOHandler.Write(myCommand.Serialize()); </code></pre> <p>On the other side you can receive the data via Indy and then</p> <pre><code> myCommand.Deserialize(ReceivedData); </code></pre> http://stackoverflow.com/questions/514482/is-delphi-with-keyword-a-bad-practice/526972#526972 0 Answer by Darian Miller for Is Delphi "with" keyword a bad practice? Darian Miller 2009-02-09T02:19:15Z 2009-02-09T02:19:15Z <p>I'm a firm believer of removing WITH support in Delphi. Your example usage of using a datamodule with named fields is about the only instance I could see it working out. Otherwise the best argument against it was given by Craig Stuntz - which I voted up.</p> <p>I just like to point out that over time you may eventually (should) rmeove all coding in OnClick events and your code will also eventually migrate away from named fields on datamodules into using classes that wrap this data and the reason to use WITH will go away. </p> http://stackoverflow.com/questions/525416/timers-in-delphi/526937#526937 0 Answer by Darian Miller for Timers In Delphi Darian Miller 2009-02-09T02:02:16Z 2009-02-09T02:02:16Z <p>I would suggest reading up on threads. Long actions (I'm not saying 300 ms is long but it sounds like that it could obviously go longer than that) tend to freeze the GUI and lead to choppy applications. Now, you can throw application.processmessages in there to keep the GUI going, but it can easily throw off your intended procedural coding style.</p> <p>I'm from the side of the aisle that believes <strong>Application.ProcessMessages</strong> should be <strong>banned</strong> unless you are a VB programmer trying to use Delphi to mimic <strong>DoEvents</strong> and you still haven't gotten out of the VB mindset.</p> <p>Spawn a thread and do your work in that thread. If want to update the GUI side when you are done, call Synchronize to 'safely' do so. Communicating the ongoing status back and forth with the thread brings in a whole new conversation that is quite a leap from using the timer control though.</p> http://stackoverflow.com/questions/486217/why-is-indy-9-included-with-delphi-2009-is-it-safe-to-use 4 Why is Indy 9 included with Delphi 2009? Is it safe to use? Darian Miller 2009-01-28T02:00:46Z 2009-02-03T20:35:53Z <p>Why is there an Indy9 folder (The default install folder of C:\Program Files\CodeGear\RAD Studio\6.0\source\Indy contains subdirectories for "Indy9" and "Indy10") Why are both versions installed? What is using Indy9? I didn't think it had been updated for 2009...is Indy9 now safe to use with Delphi 2009?</p> http://stackoverflow.com/questions/486217/why-is-indy-9-included-with-delphi-2009-is-it-safe-to-use/499195#499195 0 Answer by Darian Miller for Why is Indy 9 included with Delphi 2009? Is it safe to use? Darian Miller 2009-01-31T17:22:44Z 2009-01-31T17:22:44Z <p>I would imagine it's simply a MISTAKE by CodeGear. Is this true?</p> http://stackoverflow.com/questions/495619/delphi-smtp-component-that-supports-utf-8-or-unicode/498295#498295 1 Answer by Darian Miller for Delphi SMTP component that supports UTF-8 or Unicode Darian Miller 2009-01-31T04:51:09Z 2009-01-31T04:51:09Z <p>EasyMail says it supports RFC 2047 which Rob mentioned as handling non-ascii subject lines:</p> <p><a href="http://www.componentsource.com/products/easymail-objects/summary.html" rel="nofollow">http://www.componentsource.com/products/easymail-objects/summary.html</a></p> http://stackoverflow.com/questions/495619/delphi-smtp-component-that-supports-utf-8-or-unicode/496169#496169 2 Answer by Darian Miller for Delphi SMTP component that supports UTF-8 or Unicode Darian Miller 2009-01-30T16:34:45Z 2009-01-30T16:34:45Z <p>I would also note that most mail servers may not handle Unicode properly in the mail subject line. I haven't seen any real statistics on this, but my guess is that a very healthy percentage of mail servers still expect ascii subject lines as I believe that's what the RFC's define.</p> <p>(The message body can of course be encoded to ensure it goes through.)</p> http://stackoverflow.com/questions/495619/delphi-smtp-component-that-supports-utf-8-or-unicode/496142#496142 1 Answer by Darian Miller for Delphi SMTP component that supports UTF-8 or Unicode Darian Miller 2009-01-30T16:28:09Z 2009-01-30T16:28:09Z <p>I would definitely look at IPWorks from nSoftware.com. Their latest version is supposed to be fully Delphi 2009 compliant.</p> http://stackoverflow.com/questions/486230/delphi-2009-and-synapse-tested-and-ready-for-unicode-support 3 Delphi 2009 and Synapse - tested and ready for Unicode support? Darian Miller 2009-01-28T02:06:13Z 2009-01-29T16:22:09Z <p>Is Synapse ready for a Delphi 2009 production applications? Their website doesn't look like it's been updated in a while: <a href="http://www.ararat.cz/synapse/doku.php" rel="nofollow">http://www.ararat.cz/synapse/doku.php</a> Is the project dead?</p> http://stackoverflow.com/questions/357233/what-dead-programming-languages-do-you-know/358364#358364 Comment by Darian Miller on What dead programming languages do you know? Darian Miller 2009-09-17T23:08:47Z 2009-09-17T23:08:47Z Definitely could make standalone executables with Clipper. That was one of the vast improvements over dBase III+ Clipper 5 was definitely a great language in it's day. http://stackoverflow.com/questions/1406854/is-delphi-2010-ready-for-production-use/1407763#1407763 Comment by Darian Miller on Is Delphi 2010 ready for production use? Darian Miller 2009-09-11T03:18:23Z 2009-09-11T03:18:23Z He also asked how stable, and should he wait for a service pack. http://stackoverflow.com/questions/1338289/delphi-2010-now-released-whats-your-favorite-feature Comment by Darian Miller on Delphi 2010 now released - What's your favorite feature? Darian Miller 2009-08-27T04:51:03Z 2009-08-27T04:51:03Z There's all sorts of similar discussions questions. Here's two from the related section. <a href="http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi" rel="nofollow" title="what features of the upcoming delphi prism would you like to see in delphi for wi">stackoverflow.com/questions/268537/&hellip;</a> <a href="http://stackoverflow.com/questions/230940/what-features-would-you-like-to-see-in-the-win32-delphi-compiler" rel="nofollow" title="what features would you like to see in the win32 delphi compiler">stackoverflow.com/questions/230940/&hellip;</a> It's a brand new release - people should know if it's worth the upgrade cost, which was the main reason for asking it, so I edited and specifically asked that question. http://stackoverflow.com/questions/1338289/delphi-2010-now-released-whats-your-favorite-feature Comment by Darian Miller on Delphi 2010 now released - What's your favorite feature? Darian Miller 2009-08-27T04:21:20Z 2009-08-27T04:21:20Z I supposed I should have put a Community Wiki tag on it, which I haven't used before. But there's a more general version of it shortly after mine &quot;Which features define Delphi 2010?&quot; http://stackoverflow.com/questions/723352/creating-a-stored-procedure-to-return-the-rowcount-of-another-stored-procedure/928688#928688 Comment by Darian Miller on Creating a stored procedure to return the rowcount of another stored procedure Darian Miller 2009-07-30T02:50:40Z 2009-07-30T02:50:40Z Been there, done that! http://stackoverflow.com/questions/1029309/tidtcpserver-upgrade-problems/1030502#1030502 Comment by Darian Miller on TidTCPServer Upgrade Problems Darian Miller 2009-06-24T04:07:39Z 2009-06-24T04:07:39Z Since it recompiled without changes in D2007, then it's a given that the default install of Indy with Delphi 6 was previously modified (otherwise it wouldn't compile without code changes.) I'd agree that sniffing the traffic might really help, but I'd also look at the date/time of the Indy files on the Delphi 6 box and see if there are any out of sync with the others to see if the default Indy behavior was changed on the Delphi 6 box. I would hope that someone didn't modify Indy code directly, but it's happened before... http://stackoverflow.com/questions/605580/indy-write-buffering-efficient-tcp-communication/609133#609133 Comment by Darian Miller on Indy Write Buffering / Efficient TCP communication Darian Miller 2009-06-03T04:01:44Z 2009-06-03T04:01:44Z Unicode in communication for me, and quite a lot of people in the U.S., is less than useful. Besides, I'd rather use strings for serialization than TidBytes. I've never ended up using Indy 10 for anything important - Indy9 if Indy at all. http://stackoverflow.com/questions/916843/is-it-safe-to-use-free-instead-of-release-for-modal-forms-in-delphi/917015#917015 Comment by Darian Miller on Is it safe to use Free instead of Release for modal forms in Delphi? Darian Miller 2009-05-30T01:09:54Z 2009-05-30T01:09:54Z The CM_Release method simply calls Free() Why do you say freeing the form doesn't call the event handlers that Release does? http://stackoverflow.com/questions/927794/how-do-i-return-all-values-from-a-stored-procedure/928502#928502 Comment by Darian Miller on How do I return all values from a stored procedure? Darian Miller 2009-05-30T01:01:36Z 2009-05-30T01:01:36Z I expressly selected that route for clarity. But in the post, he was referring to two columns and 70 rows so it's not a large overhead even if you did it this way. However, I never use fields defined at design time or create a field object as you suggest. If you want to minimize overhead, you can reference fields by ordinal position which is my preference over defined fields. http://stackoverflow.com/questions/88947/what-should-the-users-of-stackoverflow-be-called/89046#89046 Comment by Darian Miller on What should the users of StackOverflow be called? Darian Miller 2009-05-26T02:42:06Z 2009-05-26T02:42:06Z badgers, badgers.... we don't need no stinkin' badgers (sorry, couldn't help it!) http://stackoverflow.com/questions/878403/tadoconnection-and-pooling/880717#880717 Comment by Darian Miller on TADoConnection and pooling Darian Miller 2009-05-20T01:05:47Z 2009-05-20T01:05:47Z TADOConnection is Borland/CodeGear wrapping of Microsoft's OLEDB interfaces. Here's a link <a href="http://blogs.msdn.com/selvar/archive/2007/11/10/ole-db-resource-pooling.aspx" rel="nofollow">blogs.msdn.com/selvar/archive/&hellip;</a>. If you look at ADODB you'll see this wrapping of that Borland did. You could import the typelib's yourself and go direct, but it's much, much easier to use TADOxxx components. http://stackoverflow.com/questions/764489/delphi-region-compiler-directive-backwards-compatible-unit-files/765004#765004 Comment by Darian Miller on Delphi Region compiler directive - backwards compatible unit files? Darian Miller 2009-04-22T02:38:03Z 2009-04-22T02:38:03Z This works...and will mark as the answer, as mentioned in the original question. My real answer is to remove Regions for now and switch everything to 2009 as time permits. http://stackoverflow.com/questions/738677/how-to-enable-oledb-resource-pooling-in-a-delphi-7-app/739149#739149 Comment by Darian Miller on How to enable OLEDB resource pooling in a Delphi 7 app Darian Miller 2009-04-13T02:34:55Z 2009-04-13T02:34:55Z It's more of a re-use of existing recent active connections. Say the count goes to zero...how long would you think the pool should keep the connection(s) open to the database? At zero, I believe it starts doing cleanup and eventually ends all connections. I haven't tested the exact time frame. http://stackoverflow.com/questions/734443/delphi-7-ado-connection-pooling-outside-of-iis/738248#738248 Comment by Darian Miller on Delphi 7 ADO connection pooling outside of IIS Darian Miller 2009-04-10T23:27:22Z 2009-04-10T23:27:22Z If the total number of open connections drop to 0 then the pool is basically cleared. It could be the ISAPI dll is keeping a connection open at all time versus your stand alone executable? http://stackoverflow.com/questions/703635/delphi-2009-data-type-question Comment by Darian Miller on Delphi 2009 Data Type Question Darian Miller 2009-04-01T01:11:26Z 2009-04-01T01:11:26Z Strip all the irrelevant part of your question and fix your apparent typo... you're comments both mention PAnsiChar1, instead of PAnsiChar1 vs. PAnsiChar2 (You are using PAnsiChar not PAnsiString...)