[Mono-list] ADO and mono

2004-10-19 Thread Eric Damron
I have a question about using ADO with mono. I'm reading a book that explains the DataSet and DataAdapter but it doesn't make sense to me. The book says that one creates a data Adaptor like this: SqlDataAdapter( commandString, connectionString) Okay, no problem there. Lets say the command string

Re: [Mono-list] ADO and mono

2004-10-19 Thread Morten Krog
No it is not redundant. It signals that the returned data is stored in a datatable named 'Customers'. If you do not supply the name the datatable is unnamed. If you used typed datasets (look into the xsd.exe tool) this is even more useful as you get strongly typed return values from the database.

Re: [Mono-list] ADO and mono

2004-10-19 Thread Eric Damron
Thanks for the reply Morten. I guess what confused me was that the author used the same name for the recordset return table as the table he was querying. I'm still a little confused because the next thing he does is: DataTable dataTable = ds.Tables[0]; If a single recordset table is returned

Re: [Mono-list] ADO and mono

2004-10-19 Thread Gregory Junker
: Tuesday, October 19, 2004 8:48 PM Subject: Re: [Mono-list] ADO and mono Thanks for the reply Morten. I guess what confused me was that the author used the same name for the recordset return table as the table he was querying. I'm still a little confused because the next thing he does

Re: [Mono-list] ADO and mono

2004-10-19 Thread Hector Geraldino
PM Subject: Re: [Mono-list] ADO and mono Thanks for the reply Morten. I guess what confused me was that the author used the same name for the recordset return table as the table he was querying. I'm still a little confused because the next thing he does is: DataTable dataTable = ds.Tables

Re: [Mono-list] ADO and mono

2004-10-19 Thread Eric Damron
a complete (pseudo-complete) RDBMS with a great characteristic: it's absolutely disconnected. hectorG - Original Message - From: Eric Damron [EMAIL PROTECTED] To: mono-list [EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 7:48 PM Subject: Re: [Mono-list] ADO and mono Thanks for the reply

Re: [Mono-list] ADO and mono

2004-10-19 Thread Hector Geraldino
exceptions accordly to the operation. And, all this, from a disconnected environment. Got it ? - Original Message - From: Eric Damron [EMAIL PROTECTED] To: mono-list [EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 10:11 PM Subject: Re: [Mono-list] ADO and mono Thanks Hector. It's still