Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 85355
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:04:35+00:00 2026-05-10T22:04:35+00:00

The title pretty much says it all. I’m using a TClientDataset to store an

  • 0

The title pretty much says it all. I’m using a TClientDataset to store an array of objects, and one of the objects has a member defined as a set of an enumerated type. As I understand it, Delphi sets are bitfields whose size can vary from 1 to 32 bytes depending on how much data they contain, and Delphi doesn’t define a TSetField. What sort of field should I use to load this value into?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T22:04:35+00:00Added an answer on May 10, 2026 at 10:04 pm

    You could use a TBytesField or a TBlobField

    ClientDataSet1MySet: TBytesField, Size=32

    var   MySet: set of Byte;   Bytes: array of Byte; begin   MySet := [1, 2, 4, 8, 16];    // Write   Assert(ClientDataSet1MySet.DataSize >= SizeOf(MySet), 'Data field is too small');    SetLength(Bytes, ClientDataSet1MySet.DataSize);   Move(MySet, Bytes[0], SizeOf(MySet));   ClientDataSet1.Edit;   ClientDataSet1MySet.SetData(@Bytes[0]);   ClientDataSet1.Post;    // Read   SetLength(Bytes, ClientDataSet1MySet.DataSize);   if ClientDataSet1MySet.GetData(@Bytes[0]) then     Move(Bytes[0], MySet, SizeOf(MySet))   else     MySet := []; // NULL end; 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Title pretty much says it all. Right now it's using XML as the default
My title pretty much says it all, but a colleague has written a component
Title pretty much says it all. The web.config, unchanged from how VS2008SP1 generated it,
The title pretty much says it all, but basically I have a main parent
The title pretty much says it all, but in SQL Server 2005 Management Studio,
The title pretty much says it all. When I'm doing some reflection through my
The title pretty much says it all, how do I know if I'm getting
The title pretty much says it all, but here's some background. We have a
The title pretty much says it all, so here's the code: #include <stdio.h> /*
The title pretty much says it all, I've got a 'web site' that was

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.