Re: Recordset Persistence Doesn't Preserve Carriage Returns?



Joseph Geretz wrote:
Actually, this seems to be more of an XML issue, than an ADO issue.
From the documentation I've seen, the *committee* has decided to
normalize all types of CR/LF to #xA. The commitee's decision is
final! ;-)

Perhaps I'll try to persist using ADTG format. However, the neat
thing about using XML is that this save and open can be done
completely in memory, with no need for an intermediate disk file. The
Recordset is simply saved to an in-memory DOM and then opened from
that same in-memory DOM. Can ADTG be used to perform an in-memory
clone of a recordset?


Why bother? Just disconnect the recordset and use the Clone method
whenever you need a clone.

Or are you creating a dll to be used by a server application?
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


.



Relevant Pages

  • Re: error 3251
    ... the applicant table. ... It will move the Clone recordset ... >> End Sub ...
    (microsoft.public.access.formscoding)
  • Re: Datagrid multiple row selections
    ... clone of the recordset that your grid is bound to. ... the Recordset property gives you access to the underlying recordset. ... >>> It is possible to press Ctrl and make multiple selections of separate ...
    (microsoft.public.vb.database.ado)
  • Re: error 3251
    ... You have a potential data type mismatch here. ... It will move the Clone recordset ... > Private Sub Combo16_AfterUpdate ...
    (microsoft.public.access.formscoding)
  • Re: Implementing an Undo function
    ... I already thought about making a complete clone of the database to be ... What I tried at first was to get all current product into a recordset ... then make a clone by saying ...
    (microsoft.public.vb.database)