Visit our Sponsor   Visit our Sponsor
delphi3000.com - the free delphi knowledge platform
delphi3000.com - the free delphi knowledge platform
500 Users Online NOW
Have a look at your member-status

connecting people's knowledge


  - Recent ArticlesRSS feed for Recent Articles on delphi3000.com
  - List of All Articles
  - Top Viewed Articles
  - Articles (+Attachem.)
  - Articles Of Interest
  - Categories
  - Top Uploader
  - Search
  - Index

  - My Home
  - Submit an Article
  - My Articles
  - My Personal Data
  - My Bookmarks
  - Activities
  - Login/Logout

  - Sign Up
  - Why Sign Up
  - Newsletter

  - Press
  - Advertise

  - Contact
  - Feedback





Community
Borland
ClubeDelphi
Dr. Bob
UK-BUG
Delphi Meetings
Planeta Delphi



Loremo - the 1.5 liter car coming in 2009




Startblatt.de






Share this article with friendsShare this article with friends
Rate this articleRate this article - to keep the quality of delphi3000.com !
Comment this article or read through previous comments (0)


ADO Recordset <-> XMLGo to Dmitry Lifatov's websiteFormat this article printer-friendly!Bookmark function is only available for registered users!
Product:
Delphi 6.x (or higher)
Category:
ADO/OLE-DB
Skill Level:
Scoring:
Last Update:
10/28/2002
Search Keys:
delphi delphi3000 article borland vcl code-snippet XML ADO Export Import DB
Times Scored:
5
Visits:
5951
Uploader: Dmitry Lifatov
Company: Business Master
Reference: N/A
 
Question/Problem/Abstract:
This unit provide two functions:

function RecordsetToXML(const Recordset: _Recordset): String;
function RecordsetFromXML(const XML: String): _Recordset;

They are very usefull for export/import operations.
Answer:



unit ADOXMLUnit;

interface

uses
  Classes, ADOInt;

function RecordsetToXML(const Recordset: _Recordset): String;
function RecordsetFromXML(const XML: String): _Recordset;

implementation

uses
  ComObj;

{
  Example:
  ...
    Memo1.Lines.Text:=RecordsetToXML(ADOQuery1.Recordset);
  ...
}
function RecordsetToXML(const Recordset: _Recordset): String;
var RS: Variant;
    Stream: TStringStream;
begin
  Result:='';
  if Recordset=nil then Exit;
  Stream:=TStringStream.Create('');
  try
    RS:=CreateOleObject('ADODB.Recordset');
    RS:=Recordset;
    RS.Save(TStreamAdapter.Create(stream) as IUnknown, adPersistXML);
    Stream.Position:=0;
    Result:=Stream.DataString;
  finally
    Stream.Free;
  end;
end;

{
  Example:
  ...
    ADOQuery1.Recordset:=RecordsetFromXML(Memo1.Lines.Text);
  ...
}
function RecordsetFromXML(const XML: String): _Recordset;
var RS: Variant;
    Stream: TStringStream;
begin
  Result:=nil;
  if XML='' then Exit;
  try
    Stream:=TStringStream.Create(XML);
    Stream.Position:=0;
    RS:=CreateOleObject('ADODB.Recordset');
    RS.Open(TStreamAdapter.Create(Stream) as IUnknown);
    Result:=IUnknown(RS) as _Recordset;
  finally
    Stream.Free;
  end;
end;

end.





Please rate this article!
Skill level:
BeginnerExpert

Useful:
No!Very!

Overall rating:
PoorExcellent



Comments to this article
Write a new comment













 
Sign up to consume product discounts for Bronze memberships !

read more


  Visit our Sponsor

 

  Community Ad of
E. Irigoyen
 
   














 







     
  Copyright © 2000 - 2007 delphi3000.com - All rights reserved. Terms of use. || Privacy
delphi3000.com is a service by bluestep.com IT-Services GmbH (Vienna)