Difference between revisions of "Talk:How to write in-memory database applications in Lazarus/FPC"

From Free Pascal wiki
Jump to navigationJump to search
(TMemDataset deprecated?!?!)
 
(update)
Line 3: Line 3:
 
http://bugs.freepascal.org/view.php?id=13967
 
http://bugs.freepascal.org/view.php?id=13967
  
 +
<code>
 
TMemDataset is deprecated and TBufDataset should be used instead.
 
TMemDataset is deprecated and TBufDataset should be used instead.
 +
</code>
  
If this is so, I'd suggest using TBufDataset and just mentioning TMemdataset exists but is not maintained anymore.
+
Clarification by Michael van Canneyt on mailing list 29 July 2011 on whether it is deprecated:
  
--[[User:BigChimp|BigChimp]] 15:17, 28 July 2011 (CEST)
+
<code>
 +
No. The idea is that TMemDataset becomes a descendent of TBufDataset.
 +
It has some methods that make operation more simple.
 +
</code>
 +
 
 +
Keeping this here for reference in case somebody else stumbles on the same entry in the bugtracker.
 +
 
 +
--[[User:BigChimp|BigChimp]] 11:27, 29 July 2011 (CEST)

Revision as of 11:27, 29 July 2011

TMemDataset deprecated?

According to Joost van der Sluis - 2010-07-22 12:14 in http://bugs.freepascal.org/view.php?id=13967

TMemDataset is deprecated and TBufDataset should be used instead.

Clarification by Michael van Canneyt on mailing list 29 July 2011 on whether it is deprecated:

No. The idea is that TMemDataset becomes a descendent of TBufDataset. It has some methods that make operation more simple.

Keeping this here for reference in case somebody else stumbles on the same entry in the bugtracker.

--BigChimp 11:27, 29 July 2011 (CEST)