M
Mary McRae
I'm creating a small test application where I simply take the contents of an
Access database and write it to an XML file (using Access' default XML).
Once the file is written, I then run it through a transform which basically
merges the contents of the database with a Word XML document instance. The
final file is then saved and returned to the requestor.
I've been pouring over examples, and can't find anything that is exactly
what I'm looking for ... can anyone point me to some samples? I've done
everything manually - that is, export the table and save as XML, run the
transform and create the result file. I've got the transform coded and it
works fine; it's just the database piece I'm missing. I've gotten this far
(without encountering any errors at runtime):
Dim connectString As String = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & thisDBName
Dim myDA As OleDbDataAdapter = New OleDbDataAdapter("SELECT A, B, C FROM
TableX", _
connectString)
Thanks for any and all help!
Access database and write it to an XML file (using Access' default XML).
Once the file is written, I then run it through a transform which basically
merges the contents of the database with a Word XML document instance. The
final file is then saved and returned to the requestor.
I've been pouring over examples, and can't find anything that is exactly
what I'm looking for ... can anyone point me to some samples? I've done
everything manually - that is, export the table and save as XML, run the
transform and create the result file. I've got the transform coded and it
works fine; it's just the database piece I'm missing. I've gotten this far
(without encountering any errors at runtime):
Dim connectString As String = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & thisDBName
Dim myDA As OleDbDataAdapter = New OleDbDataAdapter("SELECT A, B, C FROM
TableX", _
connectString)
Thanks for any and all help!