From: Mr. X. on 29 Mar 2010 10:48 Hello. Is there any container on VB.NET 2008, so I can drop queries & tables objects on it? Thanks :)
From: Rich P on 30 Mar 2010 11:05 Try a Dataset. You can select it from the Add menu under "Dataset" (.xsd file) or create it in code Dim ds As New Dataset Rich *** Sent via Developersdex http://www.developersdex.com ***
From: Mr. X. on 30 Mar 2010 12:59 Can I drop mySqlConnection or other connection objects to such a container, or similar ? Thanks :) "Rich P" <rpng123(a)aol.com> wrote in message news:uBa63pB0KHA.2512(a)TK2MSFTNGP05.phx.gbl... > Try a Dataset. You can select it from the Add menu under "Dataset" > (.xsd file) or create it in code > > Dim ds As New Dataset > > Rich > > *** Sent via Developersdex http://www.developersdex.com ***
From: Rich P on 30 Mar 2010 14:47 I you select a Dataset (.xsd) from the Add menu, then in the Server Explorer (View menu) you can connect to whichever database and drag a table or tables into the Dataset window. I think another option to right-click in the Dataset window and select Add TableDataAdapter which will bring up a wizard that you can click through. Rich *** Sent via Developersdex http://www.developersdex.com ***
From: Mr. X. on 31 Mar 2010 04:54
What I see is only few components I can drop on dataset. TableAdapter, Query, DataTable, Relation. I didn't see a way dropping connection. (The specified connection is : mySqlConnection). I want to drop the connection on design time. Can I see more elements than the above four. Thanks :) "Rich P" <rpng123(a)aol.com> wrote in message news:#7pE5lD0KHA.1796(a)TK2MSFTNGP02.phx.gbl... > I you select a Dataset (.xsd) from the Add menu, then in the Server > Explorer (View menu) you can connect to whichever database and drag a > table or tables into the Dataset window. I think another option to > right-click in the Dataset window and select Add TableDataAdapter which > will bring up a wizard that you can click through. > > Rich > > *** Sent via Developersdex http://www.developersdex.com *** |