D
darrel
is that doable?
I have built a CSV string using a stringbuilder.
I now want to take this data and populate a DS.
How do I do that?
I've gotten this far:
dim ds as new dataset
Dim objOleDbAdapter As System.Data.OleDb.OleDbDataAdapter
Dim objConnect2 As New System.Data.OleDb.OleDbConnection("[THIS IS WHERE I'M
STUCK]'")
objOleDbAdapter.Fill(ds)
As you can see, I'm stumped on the actual connection string. I have examples
connecting to a physical file, but not a string.
-Darrel
I have built a CSV string using a stringbuilder.
I now want to take this data and populate a DS.
How do I do that?
I've gotten this far:
dim ds as new dataset
Dim objOleDbAdapter As System.Data.OleDb.OleDbDataAdapter
Dim objConnect2 As New System.Data.OleDb.OleDbConnection("[THIS IS WHERE I'M
STUCK]'")
objOleDbAdapter.Fill(ds)
As you can see, I'm stumped on the actual connection string. I have examples
connecting to a physical file, but not a string.
-Darrel