Blog

All Blog Posts  |  Next Post  |  Previous Post

Flexible data handling for Delphi: TTMSFNCDataSet BETA

Today

We are excited to announce the beta release of the new TTMSFNCDataSet component, part of the latest TMS FNC Core v4.0.0.0 update! This abstract dataset implementation is designed to allow loading data from various structures, eliminating the need for traditional database connections.

What's IncludedTMS Software Delphi  Components

  • TTMSFNCDataSet: The core component that lets you seamlessly connect and load data. It supports sorting, filtering, and integrates with any component that supports TDataSet.
  • TTMSFNCDataLinkJSON & TTMSFNCDataLinkCSV: These components enhance TTMSFNCDataSet’s flexibility by enabling seamless integration with JSON and CSV files.

Get Started

Using TTMSFNCDataSet is straightforward. Here’s a quick example of how to load data from a CSV file:

  1. Drop TTMSFNCDataSet and TTMSFNCDataLinkCSV onto your form.
  2. Set the TTMSFNCDataLinkCSV.FileName property to a CSV file of your choice.
  3. Assign the TTMSFNCDataLinkCSV component to the TTMSFNCDataSet.DataLink property.
  4. Link the TTMSFNCDataSet to a DB-aware control.
  5. Set Active to True — and just like that, your data is connected and ready to use!
procedure TForm1.FormCreate(Sender: TObject);
begin
  TMSFNCDataLinkCSV1.FileName := 'MyCSVFile.csv';
  TMSFNCDataSet1.DataLink := TMSFNCDataLinkCSV1;
  DataSource1.DataSet := TMSFNCDataSet1;
  DBGrid1.DataSource := DataSource1;

  TMSFNCDataSet1.Active := True;
end;

TMS Software Delphi  Components

Custom Data Sources – Implementing Your Own

The power of TTMSFNCDataSet comes from its ability to integrate with virtually any data structure. You can easily connect to types like TList, TStringList, TDictionary, or even your own custom objects.

To make a data structure compatible with TTMSFNCDataSet, you'll need to implement the ITMSFNCDataObject interface. This gives you full control over how the dataset reads from and writes to your custom data structures.

BETA Access

TTMSFNCDataSet is available for registered users as part of the latest TMS FNC Core release (v4.0.0.0). To get access to the BETA, head over to "My Products" and download the beta zip. We encourage you to try it out and share your feedback through our support center. Your input will help shape the future of TTMSFNCDataSet!


Tunde Keller




This blog post has received 3 comments.


1. Thursday, October 17, 2024 at 1:27:21 PM

Very nice. Love the concept. I assume this doesn''t work with WebCore, does it?

Suer Martin


2. Thursday, October 17, 2024 at 4:13:03 PM

Hi,
Currently the main focus is on FMX and VCL. However, we keep the possibilities open for WEB in the future.

Tunde Keller


3. Thursday, October 17, 2024 at 6:52:47 PM

Wow! But I need it in WebCore (for Json Rest Services)!
Can manage Delta?
Thanks!


Stefano Monterisi




Add a new comment

You will receive a confirmation mail with a link to validate your comment, please use a valid email address.
All fields are required.



All Blog Posts  |  Next Post  |  Previous Post