TRYP - Don't get frustrated so easily -- sometimes it takes a while before someone notices your message.
But, to answer your question, you can't (obviously) pass the recordset over a winsock connection because a recordset is an object. You must first serialize the recordset into a string. Best way to do this is convert it to XML using ado's save method with the adPersistXML flag on it.
MyRS.Save "OutputFile.XML, adPersistXML
You then send it over your winsock connection, saving it as a temp file on the other end. To get it back into a recordset, open the file like this:
Sorry, I skipped from ODBC straight to ADO, so I've never used those technologies. Seeing as how .NET will be based on ADO, I'd advise you to start learning it.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.