Merging of two datasets
C#
2
Posts
2
Posters
0
Views
1
Watching
-
I have merged two datasets using "Dataset.Merge" command, which the data is retrived from two different dBase-III databases of same structure. Can I create a new database of using dataset, if yes, how...? Regards, Kishore.
KishoreT wrote:
an I create a new database of using dataset
Yes. You simply use ADO .Net classes to handle these operations. You'd need to make a ConnectionString to the Database provider -in your case dBaseIII- using
OleDbConnection
class, and use SQL commands -eg. CREATE TABLE-. You can call the commands usingOleDbCommand
class.Regards:rose: