From: Mr. X. on
Hello.
Is there any container on VB.NET 2008, so I can drop queries & tables
objects on it?

Thanks :)

From: Rich P on
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
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
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
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 ***