[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.0

Store object to database

Asked by LiveBootleg in Delphi Programming

Tags: object, database, store

Hi,

I would like to save a object that I created to database.  I got this far looking at other solutions on EE (Save object in data base, Q_11075005).

I have created a Firebird database with two fields (Supplier_ID - Integer, sup_option - Binary BLOB).

The code below works not 100%.  In Button1Click I write my object to database.  The record is created and all looks good.  But when I read the blob field from DB to populate my user object (Button2Click) none of the properties of the object are set.

One thing I have noticed is that 'sizeof(usr)' (Button1Click) always returns 4, no matter how long I make my Fullname and Password properties.  Is this correct?  I guess this is my problem.  Only 4 bytes of my object are written to the DB.

procedure TForm_Main.Button1Click(Sender: TObject);
var
  usr : TSPLoginUser;
  bstream : TStream;
begin
  //The object that I would like to store in the DB
  usr := TSPLoginUser.Create;
  usr.Username := 'addey';
  usr.Fullname := 'Jacques';
  usr.Password := 'password';

  //Open query and create new record.
  dm.IBOQuery1.Open;
  dm.IBOQuery1.Append;
  dm.IBOQuery1SUPPLIER_ID.Value := 5;
  bstream := dm.iboQuery1.CreateBlobStream(dm.IBOQuery1SUP_OPTION,bmWrite);
  bstream.Write(usr,sizeof(usr));  //SizeOf(usr) always returns 4
  dm.IBOQuery1.Post;
  dm.IBOQuery1.Close;
end;

procedure TForm_Main.Button2Click(Sender: TObject);
var
  usr : TSPLoginUser;
  stream : TStream;
begin
  dm.IBOQuery1.Open;
  stream := dm.IBOQuery1.CreateBlobStream(dm.IBOQuery1SUP_OPTION,bmRead);
  stream.Read(usr,sizeof(usr));//After this none of the usr object's properties are set
  dm.IBOQuery1.Close;
end;

Thanks!
[+][-]11/18/05 06:14 AM, ID: 15319578Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Delphi Programming
Tags: object, database, store
Sign Up Now!
Solution Provided By: kemanetzis
Participating Experts: 3
Solution Grade: B
 
[+][-]11/16/05 09:20 PM, ID: 15309443Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/17/05 01:23 AM, ID: 15310093Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]11/29/05 06:38 AM, ID: 15380105Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/04/06 06:13 AM, ID: 15607720Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091118-EE-VQP-93