New table in database...
-
How can i create a new datatable in a database ? We have a connection and a dataadaptor . I mean programically. Regards' Amir Jalaly life is tow days' one is paid for love someone ' and one day is paid for hate him'
-
How can i create a new datatable in a database ? We have a connection and a dataadaptor . I mean programically. Regards' Amir Jalaly life is tow days' one is paid for love someone ' and one day is paid for hate him'
You need to execute a SQL "CREATE TABLE" statement. Here is the documentation for MS Sql http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_create2_8g9x.asp[^] That should give you enough to get started...may be different for other DB's, just read the documentation for their specific "create table" implementation. HTH