possibly simple ADO/Access question

  • Thread starter Thread starter SilentCry
  • Start date Start date
S

SilentCry

just want to know if there was a way to take the contents of an xml file and
stream it into a single column in an Access database.
 
Streams are simply in memory movement of data from one source to another.
The source can be a persistant store (file or DB), a persistant store in
memory, or another stream. The ends points are not fixed to any one type. As
such, you can move the data from point to point.

The only issue is you will not be able to get to all stores directly from a
stream. I believe Access memo fits this caveat. If so, just stream to a
StringBuilder and put the ToString() result into your memo field. Problem
solved.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

**********************************************************************
Think Outside the Box!
**********************************************************************
 
Back
Top