Save current record to stream?

Discussion of open issues, suggestions and bugs regarding LiteDAC (SQLite Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
nszmnsky
Posts: 15
Joined: Wed 21 May 2014 17:07

Save current record to stream?

Post by nszmnsky » Wed 04 Nov 2015 21:21

I'm working on app tethering idea for a project, and want to share the current record of an SQLite table between the two programs. Is there a way to stream a record? I looked at .SaveToXML but that seems to work on entire table not just current record.
Thanks!

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: Save current record to stream?

Post by AlexP » Fri 06 Nov 2015 17:30

Hello,

There is no method for saving a separate record to Stream. You can apply a local filter to select the required record and save it. Or implement such behavior in your code.

Post Reply