I'm working on a network database project. I have a server where the DB is located, and the clients that gain access to the database through an authentication program.
Let's suppose client 1 makes this SQL query: "SELECT * FROM table", so client 1 sends this data to the auth program:
"I'm client 1, please execute this query: SELECT * FROM table"
Auth program executes query. Here's I need assistance: How can I pass back to client 1 then datareader object returned from query? Do I have to send all fields, one by one??!?
Thx
Xmas




Reply With Quote