Re: question about database result sets...

2004-05-05 Thread Dave Jacobson
ssage - From: Yakulis, Ross (Ross) To: [EMAIL PROTECTED] Sent: Wednesday, May 05, 2004 11:41 AM Subject: RE: question about database result sets... It occurs to me that that EJBs were created to address exactly what you describe.   Though you could also use a web se

Vas: RE: question about database result sets...

2004-05-05 Thread istvan.david
and the client's interface regards, Istvan > > Lähettäjä: "Yakulis, Ross (Ross)" <[EMAIL PROTECTED]> > Päivä: 05.05.2004 18:41 > Vastaanottaja: <[EMAIL PROTECTED]> > Otsikko: RE: question about database result sets... > > It occurs to me that th

RE: question about database result sets...

2004-05-05 Thread Yakulis, Ross (Ross)
It occurs to me that that EJBs were created to address exactly what you describe.   Though you could also use a web service as well.   The key item you leave out is, are the database queries random queries or are they pre defined? -Original Message-From: Dave Jacobson [mailto:[

RE: question about database result sets...

2004-05-05 Thread Joe Shevland
PROTECTED] Sent: Wednesday, 5 May 2004 7:56 PM To: [EMAIL PROTECTED] Subject: RE: question about database result sets... One solution is where the clients can pass an SQL SELECT statement to the web service/s, and have an XML dataset returned (as a string), which happens to be ADO.NET compliant [snip]

RE: question about database result sets...

2004-05-05 Thread Joe Shevland
One solution is where the clients can pass an SQL SELECT statement to the web service/s, and have an XML dataset returned (as a string), which happens to be ADO.NET compliant (I generate the schema and XML and return that, took a bit of fiddling but it works fine), so the .NET folks can buil