User Fabricio Araujo - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T14:07:03Zhttp://stackoverflow.com/feeds/user/10300http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1667281/how-do-i-or-if-i-cant-use-variants-on-simple-dlls0How do I (or if I can't) use Variants on simple DLLs?Fabricio Araujo2009-11-03T13:15:31Z2009-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#16443680Answer by Fabricio Araujo for Equivalent to TUpdateSQL in Delphi 2010 dbExpress?Fabricio Araujo2009-10-29T15:04:52Z2009-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#15103002Answer by Fabricio Araujo for Move project from Delphi 3 to Delphi 2010Fabricio Araujo2009-10-02T15:35:21Z2009-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#13082820Answer by Fabricio Araujo for How to specify Delphi interface GUID in Enterprise Architect?Fabricio Araujo2009-08-20T19:18:06Z2009-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#12804441Answer by Fabricio Araujo for What does an MVC Delphi with WebBroser and HTML application look like?Fabricio Araujo2009-08-14T22:06:39Z2009-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#12476321Answer by Fabricio Araujo for How do I control memory usage with Omni Thread Library's thread pool?Fabricio Araujo2009-08-08T00:47:05Z2009-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#12458780Answer by Fabricio Araujo for Why does ReadLn not assign values to all my variables in Delphi?Fabricio Araujo2009-08-07T17:02:21Z2009-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#12437162Answer by Fabricio Araujo for Create an exact copy of TPanel on Delphi5Fabricio Araujo2009-08-07T09:01:54Z2009-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#12415314Answer by Fabricio Araujo for How do I declare a TField as nullable?Fabricio Araujo2009-08-06T21:16:52Z2009-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#12415640Answer by Fabricio Araujo for Under what conditions will a TForm fire OnResize on show?Fabricio Araujo2009-08-06T21:21:23Z2009-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-3Answer by Fabricio Araujo for Class Types and Constructor CallsFabricio Araujo2009-08-06T21:31:44Z2009-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#12033250Answer by Fabricio Araujo for Any complete library for Jabber in Delphi?Fabricio Araujo2009-07-29T22:03:13Z2009-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#11748070Answer by Fabricio Araujo for How to get Firefox bookmarks from a Delphi application?Fabricio Araujo2009-07-23T22:19:40Z2009-07-23T22:19:40Z<p>Well, Firefox bookmarks are a HTML file stored in
<code><WindowsUserPath</code>>\Application Data\Mozilla\Firefox\Profiles\
<code><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#11738190Answer by Fabricio Araujo for How can I load a package and keep the debugger working?Fabricio Araujo2009-07-23T19:01:29Z2009-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#11467140Answer 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 Araujo2009-07-18T04:21:07Z2009-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#11467080Answer by Fabricio Araujo for Sort DBGrid by clicking column's titleFabricio Araujo2009-07-18T04:18:45Z2009-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#11466980Answer by Fabricio Araujo for ImageList_Add returns -1 on PC controlled with pcAnywhereFabricio Araujo2009-07-18T04:15:11Z2009-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#11399150Answer by Fabricio Araujo for Delphi 7 compile getting slower over time?Fabricio Araujo2009-07-16T19:55:15Z2009-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#11311711Answer by Fabricio Araujo for Delphi 2009 Handling of WithFabricio Araujo2009-07-15T12:40:56Z2009-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#11018240Answer by Fabricio Araujo for AnsiString return values from a Delphi 2007 DLL in a Delphi 2009 applicationFabricio Araujo2009-07-09T04:22:22Z2009-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#10967791Answer by Fabricio Araujo for How can I detect if ApplyUpdates will Insert or Update data?Fabricio Araujo2009-07-08T08:21:20Z2009-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
.
.
<creation of cdsAux>
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;
<cleanup code>
end;
</code></pre>
http://stackoverflow.com/questions/1056472/drawing-on-a-datamodule-in-delphi/1067064#10670641Answer by Fabricio Araujo for Drawing on a DataModule in DelphiFabricio Araujo2009-07-01T02:51:56Z2009-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#10414651Answer by Fabricio Araujo for How to test labels in QTPFabricio Araujo2009-06-24T23:20:15Z2009-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#10413940Answer by Fabricio Araujo for Why would you check for Assigned(self) in object methods?Fabricio Araujo2009-06-24T22:48:43Z2009-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#10152032Answer by Fabricio Araujo for Use DLL compiled in Delphi 7 in C#Fabricio Araujo2009-06-18T21:13:19Z2009-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#10242471Answer by Fabricio Araujo for How do you skin Delphi components using graphic files?Fabricio Araujo2009-06-21T16:22:34Z2009-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#10152320Answer by Fabricio Araujo for Differences between ado and bdeFabricio Araujo2009-06-18T21:19:27Z2009-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#9852160Answer by Fabricio Araujo for Uninitialized memory in C++Builder / DelphiFabricio Araujo2009-06-12T06:05:11Z2009-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#9850180Answer by Fabricio Araujo for Rave Report that comes with Delphi 2006Fabricio Araujo2009-06-12T04:35:37Z2009-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#9651272Answer by Fabricio Araujo for Is QuickReports included with Delphi 2009Fabricio Araujo2009-06-08T14:18:34Z2009-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#1934664Comment by Fabricio Araujo on Why does my "if" statement appear not to run?Fabricio Araujo2009-12-21T15:37:18Z2009-12-21T15:37:18ZI've seen this behavior before, and I bet that's exactly what's happening!+1http://stackoverflow.com/questions/1890490/upgrade-to-delphi-2010-or-stick-with-delphi-7-forever/1893740#1893740Comment by Fabricio Araujo on Upgrade to Delphi 2010, or stick with Delphi 7 "forever"?Fabricio Araujo2009-12-14T14:38:49Z2009-12-14T14:38:49ZThere 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: "Next time, I'll buy my software " ehehehhttp://stackoverflow.com/questions/1718921/do-generics-mess-up-interface-name-mapping/1719214#1719214Comment by Fabricio Araujo on Do Generics Mess Up Interface Name Mapping?Fabricio Araujo2009-11-12T13:31:25Z2009-11-12T13:31:25ZD2010 has already this hash, Barry?
http://stackoverflow.com/questions/1667281/how-do-i-or-if-i-cant-use-variants-on-simple-dllsComment by Fabricio Araujo on How do I (or if I can't) use Variants on simple DLLs?Fabricio Araujo2009-11-09T12:16:36Z2009-11-09T12:16:36ZI 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#1667666Comment by Fabricio Araujo on How do I (or if I can't) use Variants on simple DLLs?Fabricio Araujo2009-11-03T14:55:31Z2009-11-03T14:55:31ZHmmm... Nice. I'll give it a try tonight.http://stackoverflow.com/questions/1667281/how-do-i-or-if-i-cant-use-variants-on-simple-dllsComment by Fabricio Araujo on How do I (or if I can't) use Variants on simple DLLs?Fabricio Araujo2009-11-03T14:16:27Z2009-11-03T14:16:27ZDelphi is alive and kicking, Chris ;-)http://stackoverflow.com/questions/1635057/equivalent-to-tupdatesql-in-delphi-2010-dbexpress/1636159#1636159Comment by Fabricio Araujo on Equivalent to TUpdateSQL in Delphi 2010 dbExpress?Fabricio Araujo2009-10-29T15:00:46Z2009-10-29T15:00:46ZWe'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 databasehttp://stackoverflow.com/questions/1635057/equivalent-to-tupdatesql-in-delphi-2010-dbexpress/1636159#1636159Comment by Fabricio Araujo on Equivalent to TUpdateSQL in Delphi 2010 dbExpress?Fabricio Araujo2009-10-28T14:53:43Z2009-10-28T14:53:43ZAnd when I say 'updates' read: insert, delete and update commands.http://stackoverflow.com/questions/1635057/equivalent-to-tupdatesql-in-delphi-2010-dbexpress/1636159#1636159Comment by Fabricio Araujo on Equivalent to TUpdateSQL in Delphi 2010 dbExpress?Fabricio Araujo2009-10-28T14:45:15Z2009-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-2010Comment by Fabricio Araujo on Move project from Delphi 3 to Delphi 2010Fabricio Araujo2009-10-02T15:38:21Z2009-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#1477664Comment by Fabricio Araujo on Delphi, frames vs forms. What for multi-document interface?Fabricio Araujo2009-09-25T16:38:41Z2009-09-25T16:38:41ZIt's not a good OOP practice? Please, explain that!!!http://stackoverflow.com/questions/1372073/single-user-source-control/1373612#1373612Comment by Fabricio Araujo on Single-user source control?Fabricio Araujo2009-09-03T19:58:07Z2009-09-03T19:58:07ZI 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-2Comment by Fabricio Araujo on Resolving a bug in the TDatasetProvider (the hard way) in Delphi 2010 or Delphi 2009Fabricio Araujo2009-09-02T18:45:56Z2009-09-02T18:45:56ZYes, 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-2Comment by Fabricio Araujo on Resolving a bug in the TDatasetProvider (the hard way) in Delphi 2010 or Delphi 2009Fabricio Araujo2009-09-02T18:22:21Z2009-09-02T18:22:21ZHave 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#1282240Comment by Fabricio Araujo on Is there a way to save the state of an object for a faster reload later?Fabricio Araujo2009-08-20T19:20:33Z2009-08-20T19:20:33Z+1. Perfect idea.