User Fabricio Araujo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T14:07:03Z http://stackoverflow.com/feeds/user/10300 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1667281/how-do-i-or-if-i-cant-use-variants-on-simple-dlls 0 How do I (or if I can't) use Variants on simple DLLs? Fabricio Araujo 2009-11-03T13:15:31Z 2009-11-03T14:29:01Z <p>I want to expose some functionality of a internal object as a DLL - but that functionality uses variants. But I need to know: I can export a function with Variant parameters and/or return - or is better to go to an string-only representation? </p> <p>What is better, from language-agnostic POV (the consumer is not made with Delphi - but all will run in Windows)?</p> http://stackoverflow.com/questions/1635057/equivalent-to-tupdatesql-in-delphi-2010-dbexpress/1644368#1644368 0 Answer by Fabricio Araujo for Equivalent to TUpdateSQL in Delphi 2010 dbExpress? Fabricio Araujo 2009-10-29T15:04:52Z 2009-10-29T15:04:52Z <p>Using ClientDatasets and providers, you can use a TDatasetProvider with a generic OnUpdateRecord(?, don't remember the exact name now) handler and make it uses the sqls you used on TUpdateSQL.</p> <p>Just an idea, in the case you cannot use 3rd party components....</p> http://stackoverflow.com/questions/1510168/move-project-from-delphi-3-to-delphi-2010/1510300#1510300 2 Answer by Fabricio Araujo for Move project from Delphi 3 to Delphi 2010 Fabricio Araujo 2009-10-02T15:35:21Z 2009-10-06T15:48:42Z <p>As you have D2007 and assuming all these component sets come with D2007 dcus as well, I'll advise you to first try reopen the codebase on D2007. And after that, go to D2010 because of the Unicode feature of the actual VCL - which can create some migration problems (which I'll not discuss here because it's deeply discussed on the web and <a href="http://stackoverflow.com/search?q=%5Bdelphi%5D+unicode">here on SO</a>).</p> <p>I'd say that because somewhere between D5 and D7 (don't record exactly) happened an unit reorganization of the rtl (with the creation of the Variants.pas unit and many OTAPI units changed names, etc). So that will be where your first problems arise. EDIT:Not only Variants got relocated, but much IDE integration stuff too - to avoid unlicensed code to get deployed. If you have some OTAPI code (for example, code that allows published properties on inherited forms), it'll need to be relocated to a package project. </p> <p>As <a href="http://stackoverflow.com/questions/1510168/move-project-from-delphi-3-to-delphi-2010/1510564#1510564">skramradt</a> said, you may have to deal with the binary DFM thing....</p> <p>After that, if all works, go to the Unicode thing. Depending on the app, it can be easy or not. For mine ones, not of great annoyance. But I know there are others facing greater problems with it than me.</p> http://stackoverflow.com/questions/1300510/how-to-specify-delphi-interface-guid-in-enterprise-architect/1308282#1308282 0 Answer by Fabricio Araujo for How to specify Delphi interface GUID in Enterprise Architect? Fabricio Araujo 2009-08-20T19:18:06Z 2009-08-20T19:18:06Z <p>Seems that EA does not support interfaces as in COM programming. But, you can try use the template editing feature to change the way code is generated... </p> http://stackoverflow.com/questions/1278725/what-does-an-mvc-delphi-with-webbroser-and-html-application-look-like/1280444#1280444 1 Answer by Fabricio Araujo for What does an MVC Delphi with WebBroser and HTML application look like? Fabricio Araujo 2009-08-14T22:06:39Z 2009-08-14T22:06:39Z <p>MVC stands for "Model-View-Controller". So, an application that uses MVC makes it's interfaces in the following way:</p> <ul> <li><p>have classes that encapsulate business rules on the business layer (which is the "Model" on MVC)</p></li> <li><p>a form (on a desktop application) or a html(jsp, asp.net, coldfusion, etc) page, which is the visual presentation of functionality for the user. (it's the "View")</p></li> <li><p>a class (or a method, depends of the complexity) that modifies the "View", making it act on the desired behavior. (the "Controller")</p></li> </ul> <p>So the controller is tied on the model and view. The view is not tied to a specific controller (so it can reused on another part), nor the Model. </p> <p>It's the controller that makes things happen. It interects with the Model classes and controls the view's behavior.</p> <p>This is what I understand for MVC.</p> http://stackoverflow.com/questions/1246500/how-do-i-control-memory-usage-with-omni-thread-librarys-thread-pool/1247632#1247632 1 Answer by Fabricio Araujo for How do I control memory usage with Omni Thread Library's thread pool? Fabricio Araujo 2009-08-08T00:47:05Z 2009-08-08T00:47:05Z <p>Looks more like an memory leak issue than a threading issue...</p> http://stackoverflow.com/questions/1245512/why-does-readln-not-assign-values-to-all-my-variables-in-delphi/1245878#1245878 0 Answer by Fabricio Araujo for Why does ReadLn not assign values to all my variables in Delphi? Fabricio Araujo 2009-08-07T17:02:21Z 2009-08-07T17:02:21Z <p>ReadLn? hmmm (from memory) Was it expecting one line for each variable??? Really don't remember...</p> http://stackoverflow.com/questions/1238122/create-an-exact-copy-of-tpanel-on-delphi5/1243716#1243716 2 Answer by Fabricio Araujo for Create an exact copy of TPanel on Delphi5 Fabricio Araujo 2009-08-07T09:01:54Z 2009-08-07T09:01:54Z <p>Too much code... ObjectBinaryToText and ObjectTextToBinary do the job nicely using streaming. Delphi 7 have a code example, don't know 2009 (or 2006, never bothered to look) still have it. See D5 help file for those functions (don't have d5 available here).</p> http://stackoverflow.com/questions/1241358/how-do-i-declare-a-tfield-as-nullable/1241531#1241531 4 Answer by Fabricio Araujo for How do I declare a TField as nullable? Fabricio Araujo 2009-08-06T21:16:52Z 2009-08-07T06:49:07Z <p>Have you verified if the db field which this field represents have a not null constraint?</p> http://stackoverflow.com/questions/1240767/under-what-conditions-will-a-tform-fire-onresize-on-show/1241564#1241564 0 Answer by Fabricio Araujo for Under what conditions will a TForm fire OnResize on show? Fabricio Araujo 2009-08-06T21:21:23Z 2009-08-07T05:35:02Z <p>I believe that OnResize will fire when an event dispatch a message saying that form size (left, bottom, width, height) will be modified.</p> <p>Since you already discovered which message fires that event, you need now trace where the message is sent in the vcl.</p> <p>Look at the vcl source code to see if you can spot those operations.</p> <p>Edit: let's go low level. Forms in windows (grossly talking) have what is called "window class" (it's not a class like we know it oop). All times the window class of the form is resized (and form is visible), the WM_SIZE is sent.</p> <p>So it will not happen all the times the form is shown, but only the it's dimensions are changed compared with underlying window class.</p> <p>As you have observed, many properties valuez change the dimensions of the form (even a few pixels). </p> <p>This is a <strong>very superficial</strong> explanation, that's a ton of other details - but it's my understanding how things works "under the hood".</p> http://stackoverflow.com/questions/1239248/class-types-and-constructor-calls/1241622#1241622 -3 Answer by Fabricio Araujo for Class Types and Constructor Calls Fabricio Araujo 2009-08-06T21:31:44Z 2009-08-06T21:31:44Z <p>Or descend it from TComponent, which already have a virtual constructor.</p> http://stackoverflow.com/questions/181987/any-complete-library-for-jabber-in-delphi/1203325#1203325 0 Answer by Fabricio Araujo for Any complete library for Jabber in Delphi? Fabricio Araujo 2009-07-29T22:03:13Z 2009-07-29T22:03:13Z <p>Take care: Jopl is licensed as GPLv2. So, if you wanna doing a commercial work, you'll need another library...</p> http://stackoverflow.com/questions/1174490/how-to-get-firefox-bookmarks-from-a-delphi-application/1174807#1174807 0 Answer by Fabricio Araujo for How to get Firefox bookmarks from a Delphi application? Fabricio Araujo 2009-07-23T22:19:40Z 2009-07-23T22:19:40Z <p>Well, Firefox bookmarks are a HTML file stored in <code>&lt;WindowsUserPath</code>>\Application Data\Mozilla\Firefox\Profiles\ <code>&lt;aRamdonProfileName</code>>\bookmark.htm as Sinan Ünür said.</p> <p>So you need to get the mozilla profiles dir and retrie the folder name in there. </p> <p>After that you need to parse the html file.....</p> <p>So AFAIK, no, there's no API to directly get the FF bookmarks.</p> http://stackoverflow.com/questions/1169715/how-can-i-load-a-package-and-keep-the-debugger-working/1173819#1173819 0 Answer by Fabricio Araujo for How can I load a package and keep the debugger working? Fabricio Araujo 2009-07-23T19:01:29Z 2009-07-23T19:01:29Z <p>Hmmmm... This is a stupid question, but I have to ask: the initialization function have the EXACT declaration syntax like the other plugins that work ?(from your question, I deducted you made some others that work)</p> http://stackoverflow.com/questions/1133387/is-the-dif-or-patch-adder-for-delphi-ide-ie-if-someone-makes-patch-and-i-want-to/1146714#1146714 0 Answer by Fabricio Araujo for Is the dif or patch adder for Delphi IDE, ie if someone makes patch and I want to add it to my project automatically? Fabricio Araujo 2009-07-18T04:21:07Z 2009-07-18T04:21:07Z <p>I think the OP is asking something like the diff/patch utils from <a href="http://gnuwin32.sourceforge.net/" rel="nofollow">GNUWin</a> tools. You get a patch file and apply it to the code base.</p> http://stackoverflow.com/questions/1145839/sort-dbgrid-by-clicking-columns-title/1146708#1146708 0 Answer by Fabricio Araujo for Sort DBGrid by clicking column's title Fabricio Araujo 2009-07-18T04:18:45Z 2009-07-18T04:18:45Z <p>Delphi 3 have TClientDataset. And TQuery can use explicitly created indexes on the database to order data on the IndexName property.</p> http://stackoverflow.com/questions/1129864/imagelistadd-returns-1-on-pc-controlled-with-pcanywhere/1146698#1146698 0 Answer by Fabricio Araujo for ImageList_Add returns -1 on PC controlled with pcAnywhere Fabricio Araujo 2009-07-18T04:15:11Z 2009-07-18T04:15:11Z <p>Maybe pcAnywhere is doing something that generate a resource leak on the controlled system... And ImageList cannot add a new image because of this. Then maybe the sample application just not trigged the critical mass .</p> <p>There was many years ago that I touched an pcAnywere installation.</p> http://stackoverflow.com/questions/1138323/delphi-7-compile-getting-slower-over-time/1139915#1139915 0 Answer by Fabricio Araujo for Delphi 7 compile getting slower over time? Fabricio Araujo 2009-07-16T19:55:15Z 2009-07-16T19:55:15Z <p>This question is similar to <a href="http://stackoverflow.com/questions/920560/delphi-how-to-organize-source-code-to-increase-compiler-performance">that one</a>. Avoiding circular references would help a lot. DelphiSpeedUp, as stated above, also helps.</p> http://stackoverflow.com/questions/1129970/delphi-2009-handling-of-with/1131171#1131171 1 Answer by Fabricio Araujo for Delphi 2009 Handling of With Fabricio Araujo 2009-07-15T12:40:56Z 2009-07-15T12:40:56Z <p><strong>With..do</strong> is to be used with care. Otherwise, is a infinite source of headaches.... I agree with Rob Kennedy and others. </p> <p>As <a href="http://stackoverflow.com/questions/514482/is-delphi-with-keyword-a-bad-practice/515933#515933">Craig Stuntz</a> (<a href="http://stackoverflow.com/questions/514482/is-delphi-with-keyword-a-bad-practice/515933">in other post about with..do</a>) and <a href="http://stackoverflow.com/questions/1129970/delphi-2009-handling-of-with/1130583#1130583">Lasse V. Karlsen</a> above said, <strong>with..do</strong> can create a lot of traps.</p> http://stackoverflow.com/questions/1041421/ansistring-return-values-from-a-delphi-2007-dll-in-a-delphi-2009-application/1101824#1101824 0 Answer by Fabricio Araujo for AnsiString return values from a Delphi 2007 DLL in a Delphi 2009 application Fabricio Araujo 2009-07-09T04:22:22Z 2009-07-09T04:22:22Z <p>I agree with Rob and Remy here: common Dlls should return PAnsiChar instead of AnsiStrings.</p> <p>If the DLL works OK compiled with D2009, why simply doesn't stop compiling it with D2007 and start compiling it with D2009 once and for all?</p> http://stackoverflow.com/questions/1096674/how-can-i-detect-if-applyupdates-will-insert-or-update-data/1096779#1096779 1 Answer by Fabricio Araujo for How can I detect if ApplyUpdates will Insert or Update data? Fabricio Araujo 2009-07-08T08:21:20Z 2009-07-08T14:54:06Z <p>ApplyUpdates doesn't give you that information - since it can be Inserting, updating and deleting.</p> <p>ApplyUpdates apply the change information stored on Delta array. That change information can, for example, contain any number of changes of different types (insertions, deletions and updatings) and all these will be applied on the same call.</p> <p>On TDatasetProvider you have the BeforeUpdateRecord event (or something like that, sleep does funny things on memory :-) ). That event is called before each record of Delta is applied to the underlying database/dataset and therefore the place to get such information... But Showmessage will stop the apply process.</p> <p>EDIT: Now I remembered there's another option: you can assign Delta to another clientdataset Data property and read the dataset UpdateStatus for that record. Of course, you need to do this <em>before</em> doing applyupdates... </p> <pre><code>var cdsAux: TClientDataset; begin . . &lt;creation of cdsAux&gt; cdsAUx.Data := cdsUpdated.Delta; cdsAux.First; case cdsAux.UpdateStatus of usModified: ShowMessage('Modified'); usInserted: ShowMessage('Inserted'); usDeleted: ShowMessage('Deleted'); // For this to work you have to modify // TClientDataset.StatusFilter end; &lt;cleanup code&gt; end; </code></pre> http://stackoverflow.com/questions/1056472/drawing-on-a-datamodule-in-delphi/1067064#1067064 1 Answer by Fabricio Araujo for Drawing on a DataModule in Delphi Fabricio Araujo 2009-07-01T02:51:56Z 2009-07-01T02:51:56Z <p>I believe that some way to organize the components in visible groups on screen could be nice... I have a report DM which have tons of datasets, dataset providers and Rave DataSources (circa 40 components).... If I could create some groups to differentiate which is used in what report.</p> <p>But this in DM designer itself, not on a separate drawing space...</p> http://stackoverflow.com/questions/1041383/how-to-test-labels-in-qtp/1041465#1041465 1 Answer by Fabricio Araujo for How to test labels in QTP Fabricio Araujo 2009-06-24T23:20:15Z 2009-06-24T23:20:15Z <p>It can detect controls like TSpeedButton? If not, this can be a sign that Qtp cannot detect controls that descend from TGraphicControl and therefore doesn't have a window handle.</p> http://stackoverflow.com/questions/1040860/why-would-you-check-for-assignedself-in-object-methods/1041394#1041394 0 Answer by Fabricio Araujo for Why would you check for Assigned(self) in object methods? Fabricio Araujo 2009-06-24T22:48:43Z 2009-06-24T22:48:43Z <p>Seems the original intention for that method is that it become a abstract method.</p> http://stackoverflow.com/questions/1013088/use-dll-compiled-in-delphi-7-in-c/1015203#1015203 2 Answer by Fabricio Araujo for Use DLL compiled in Delphi 7 in C# Fabricio Araujo 2009-06-18T21:13:19Z 2009-06-22T20:55:24Z <p>If you have the source of the D7 dll, you can change the exported function to make the ShortString function to return PChar. You can create new functions that call the original ones and do the typecast - that's the easiest path. If you follow this path do the same to the Integer and Cardinal types (cast them to LongInt and LongWord, respectively). Some code below (I imagine that mages like mr Hausladen have a more elegant approach, but this works :-) )</p> <pre><code>var SInput: ShortString; POutput: PAnsiChar; Tam: Integer; pt: Pointer; begin SInput := 'Alphabet'; //ShortString pt := @SInput[1]; // Points to the first char of the string; Tam := (Length(SInput))+1; // Size the string POutput := StrAlloc(tam); // Allocate; CopyMemory(POutput,pt,tam); // Do the copy POutput[tam-1] := #0; // Put the null to finish MessageBox(0, POutput, 'Algo', MB_ICONWARNING or MB_OK); StrDispose(POutput); end; </code></pre> <p>This works because internally ShortString is a array [0..255] of Char. I don't have an D2009 at hand to see if the SizeOf(char) must be changed to SizeOf(AnsiChar). <em>BUT</em> the principle is the same: allocate the PAnsiChar, get the Pointer to the first the char of the ShortString and do Copy (in this case I've done with CopyMemory) to the PAnsiChar. And put the null in its' place.</p> <p>Or you can go the <a href="http://stackoverflow.com/questions/1013088/use-dll-compiled-in-delphi-7-in-c/1013463#1013463">mghie's</a> way and create a wrapper and do the casts there.</p> http://stackoverflow.com/questions/1023984/how-do-you-skin-delphi-components-using-graphic-files/1024247#1024247 1 Answer by Fabricio Araujo for How do you skin Delphi components using graphic files? Fabricio Araujo 2009-06-21T16:22:34Z 2009-06-21T16:22:34Z <p>You'd have to change the default drawing of most components. So, AFAIK, you'll have to deal with TCanvas to change way the control is draw... For forms, you can use an TImage to cover it. </p> <p>So, it's easyer with a suite that supports skinning than with default components.</p> http://stackoverflow.com/questions/771987/differences-between-ado-and-bde/1015232#1015232 0 Answer by Fabricio Araujo for Differences between ado and bde Fabricio Araujo 2009-06-18T21:19:27Z 2009-06-18T21:19:27Z <p>Simple,</p> <p>BDE is dead. Period. Ask any Codegear/Embarcadero guy and they will say that BDE is there for backwards compatibility <strong><em>only</em></strong> and is not supported anymore.</p> <p>ADO is a Microsoft technology, works well in many scenarios and is very flexible.</p> http://stackoverflow.com/questions/959739/uninitialized-memory-in-cbuilder-delphi/985216#985216 0 Answer by Fabricio Araujo for Uninitialized memory in C++Builder / Delphi Fabricio Araujo 2009-06-12T06:05:11Z 2009-06-12T06:05:11Z <p>On Delphi, as far as I know: * vcl classes auto initialize its fields. * Globals too</p> <p>Local variables are <em>not</em> initialized. Their initial content is completely undefined. So, Assigned(variable) of TObject type will return <strong>false</strong> all times if the <em>variable</em> is local.</p> http://stackoverflow.com/questions/929156/rave-report-that-comes-with-delphi-2006/985018#985018 0 Answer by Fabricio Araujo for Rave Report that comes with Delphi 2006 Fabricio Araujo 2009-06-12T04:35:37Z 2009-06-12T04:35:37Z <p>If the .rav is not embedded in the executable (yes, it's possible), you can modify the dataview and substitute the original ones to direct database dataviews. So, you can modify the report if the program just fire the report without further parametrization...... There is some documentation on the script engine of rave, in the help of visual editor and in the Nevrona site.</p> <p>Of course, Nevrona needs to do better documentation... </p> http://stackoverflow.com/questions/964302/is-quickreports-included-with-delphi-2009/965127#965127 2 Answer by Fabricio Araujo for Is QuickReports included with Delphi 2009 Fabricio Araujo 2009-06-08T14:18:34Z 2009-06-09T16:29:53Z <p>The last version which came with Quick Reports was D7, and QR was not installed as default (since it was the first version with Rave) - but included on the Demos folder. Since then, you have to purchase it. EDIT: As Gerry said, in the D2006 registered users' downloads, there's a Qr4Standard available.</p> http://stackoverflow.com/questions/1934593/why-does-my-if-statement-appear-not-to-run/1934664#1934664 Comment by Fabricio Araujo on Why does my "if" statement appear not to run? Fabricio Araujo 2009-12-21T15:37:18Z 2009-12-21T15:37:18Z I've seen this behavior before, and I bet that's exactly what's happening!+1 http://stackoverflow.com/questions/1890490/upgrade-to-delphi-2010-or-stick-with-delphi-7-forever/1893740#1893740 Comment by Fabricio Araujo on Upgrade to Delphi 2010, or stick with Delphi 7 "forever"? Fabricio Araujo 2009-12-14T14:38:49Z 2009-12-14T14:38:49Z There are many who doesn't have the courage to say this on the web. But do what you do - or even worse.As for your wife, why you didn't have given that excelent pair of shoes before, saying: &quot;Next time, I'll buy my software &quot; eheheh http://stackoverflow.com/questions/1718921/do-generics-mess-up-interface-name-mapping/1719214#1719214 Comment by Fabricio Araujo on Do Generics Mess Up Interface Name Mapping? Fabricio Araujo 2009-11-12T13:31:25Z 2009-11-12T13:31:25Z D2010 has already this hash, Barry? http://stackoverflow.com/questions/1667281/how-do-i-or-if-i-cant-use-variants-on-simple-dlls Comment by Fabricio Araujo on How do I (or if I can't) use Variants on simple DLLs? Fabricio Araujo 2009-11-09T12:16:36Z 2009-11-09T12:16:36Z I apologize for leaving the question open so much time, but I haven't time to try the ideas of you in the weekend. I hope I'll try it today night. http://stackoverflow.com/questions/1667281/how-do-i-or-if-i-cant-use-variants-on-simple-dlls/1667666#1667666 Comment by Fabricio Araujo on How do I (or if I can't) use Variants on simple DLLs? Fabricio Araujo 2009-11-03T14:55:31Z 2009-11-03T14:55:31Z Hmmm... Nice. I'll give it a try tonight. http://stackoverflow.com/questions/1667281/how-do-i-or-if-i-cant-use-variants-on-simple-dlls Comment by Fabricio Araujo on How do I (or if I can't) use Variants on simple DLLs? Fabricio Araujo 2009-11-03T14:16:27Z 2009-11-03T14:16:27Z Delphi is alive and kicking, Chris ;-) http://stackoverflow.com/questions/1635057/equivalent-to-tupdatesql-in-delphi-2010-dbexpress/1636159#1636159 Comment by Fabricio Araujo on Equivalent to TUpdateSQL in Delphi 2010 dbExpress? Fabricio Araujo 2009-10-29T15:00:46Z 2009-10-29T15:00:46Z We're talking about BDE components, and yes they can - if you create the SQL to Insert,Update and Delete on the query object and put it on a TUpdateSQL. When the bde component get a Post commanded, it uses the SQL on the TUpdateSQL component to write the data to database http://stackoverflow.com/questions/1635057/equivalent-to-tupdatesql-in-delphi-2010-dbexpress/1636159#1636159 Comment by Fabricio Araujo on Equivalent to TUpdateSQL in Delphi 2010 dbExpress? Fabricio Araujo 2009-10-28T14:53:43Z 2009-10-28T14:53:43Z And when I say 'updates' read: insert, delete and update commands. http://stackoverflow.com/questions/1635057/equivalent-to-tupdatesql-in-delphi-2010-dbexpress/1636159#1636159 Comment by Fabricio Araujo on Equivalent to TUpdateSQL in Delphi 2010 dbExpress? Fabricio Araujo 2009-10-28T14:45:15Z 2009-10-28T14:45:15Z He's asking about TUpdateSQL component, which allow substitution of SQL generated by the BDE component(TTable, TQuery) for ones written by the developer. It's mostly used for allowing updates on queries with joins. http://stackoverflow.com/questions/1510168/move-project-from-delphi-3-to-delphi-2010 Comment by Fabricio Araujo on Move project from Delphi 3 to Delphi 2010 Fabricio Araujo 2009-10-02T15:38:21Z 2009-10-02T15:38:21Z @mghie Maybe his plans is bring the codebase to D2010 to unify the development environment and getting used to it before adventuring on a rewrite or heavy changes. http://stackoverflow.com/questions/1464778/delphi-frames-vs-forms-what-for-multi-document-interface/1477664#1477664 Comment by Fabricio Araujo on Delphi, frames vs forms. What for multi-document interface? Fabricio Araujo 2009-09-25T16:38:41Z 2009-09-25T16:38:41Z It's not a good OOP practice? Please, explain that!!! http://stackoverflow.com/questions/1372073/single-user-source-control/1373612#1373612 Comment by Fabricio Araujo on Single-user source control? Fabricio Araujo 2009-09-03T19:58:07Z 2009-09-03T19:58:07Z I worked with Starteam on small team and it's highly customizable GUI client is amazing - the filter and query features are astonishing once you grasp it. http://stackoverflow.com/questions/1366999/resolving-a-bug-in-the-tdatasetprovider-the-hard-way-in-delphi-2010-or-delphi-2 Comment by Fabricio Araujo on Resolving a bug in the TDatasetProvider (the hard way) in Delphi 2010 or Delphi 2009 Fabricio Araujo 2009-09-02T18:45:56Z 2009-09-02T18:45:56Z Yes, because it's a numeric field and the value should not be quoted (as the value is NOT a string). The fact that newer versions of RDBMS tolerate this does not make it a feature - it's a bug. And SQL Server 2000 is widely used, since it simply works and most houses does not want to migrate until the last minute. http://stackoverflow.com/questions/1366999/resolving-a-bug-in-the-tdatasetprovider-the-hard-way-in-delphi-2010-or-delphi-2 Comment by Fabricio Araujo on Resolving a bug in the TDatasetProvider (the hard way) in Delphi 2010 or Delphi 2009 Fabricio Araujo 2009-09-02T18:22:21Z 2009-09-02T18:22:21Z Have you registered this error on QC? http://stackoverflow.com/questions/1282123/is-there-a-way-to-save-the-state-of-an-object-for-a-faster-reload-later/1282240#1282240 Comment by Fabricio Araujo on Is there a way to save the state of an object for a faster reload later? Fabricio Araujo 2009-08-20T19:20:33Z 2009-08-20T19:20:33Z +1. Perfect idea.