GeekArticles
Programming
Delphi
Programming
DelphiDeleting Dataset Records In a Loop - Poll Results - Why All Records Are Not Deleted
in <a :: Several days ago posted a <a asking how many records (in %) would get deleted in a loop like:
<pre><code>
<b>var</b>
ds : TSomeDataSet
<b>begin</b>
ds.First;
<b>while</b> <b>NOT</b> ds.Eof <b>do</b>
<b>begin</b>
<b>if</b> TRUE <b>then</b> ds.Delete;
ds.Next;
<b>end</b>;
<b>end</b>;
</code></pre>...<p><a Full Post</a></p>
Sponsored Links
Related Topics
Subscribe via RSS
Delphi
- A load of ASP.NET related tutorials, articles, tips and tricks!
- How to move PageControl's tabs using drag'n'drop
- Charts in database applications
- Creating Components Dynamically (at Run-Time)
- The role of the "AOwner" parameter in the Create constructor
- Creating a roll up form (with animation)
- Poll: Do you already have some experience with Delphi?
- Creating a database from Delphi code
- TMemoBar - T(Custom)Memo extender
- How to click-and-select a line in TMemo
