Re: Getting database results from server to client

2011-03-30 Thread Qian Qiao
You cannot send result sets directly, and I don't imagine you'd want to. Take a look at request factory perhaps? -- Joe Sent from tablet On Mar 30, 2011 4:04 PM, "azuniga" wrote: > I am passing 2 Dates from the client to the server via RPC. The server > will then take these 2 dates and query the

Getting database results from server to client

2011-03-30 Thread azuniga
I am passing 2 Dates from the client to the server via RPC. The server will then take these 2 dates and query the database for the results between these dates, something roughly along the lines of "select * from table where date_attribue between date1 and date2". Now when I get the result set, what