Creating a new table...

  • Thread starter Thread starter Amir Jalaly
  • Start date Start date
A

Amir Jalaly

how can I create new table in a database with ado.net
programically?
we have a dataset ,connection and dataadaptor.
Has ado.net a function for this work.

please help me.
Regards' Amir Jalaly
 
Hi Amir,
how can I create new table in a database with ado.net
programically?
we have a dataset ,connection and dataadaptor.
Has ado.net a function for this work.

You can make tables in ADO net using the sqlStatements "CREATE TABLE"

Those have you to process using the OLeDB or SQL command.executeNonQueury()

I hope this helps?

Cor
 
¤ how can I create new table in a database with ado.net
¤ programically?
¤ we have a dataset ,connection and dataadaptor.
¤ Has ado.net a function for this work.

You may want to indicated why kind of database you are working with.


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 
Back
Top