|
-
Jan 16th, 2004, 02:15 PM
#1
Thread Starter
Registered User
quick db definition question
i created a new database by defining it as an ado catalog....
then i can add adox tables...
but, i would rather use the normal table class rather than the ado table class. how can i add a normal table to an ado catalog, or how can i define my database differently?
can you define a new database directly from a dataset for example?
-
Jan 16th, 2004, 02:28 PM
#2
Sleep mode
As far as I know (since I'd worked on this issue) , you can't create mdb database with pure ADO.NET . You can only do this if you want to create SQL Database File .
-
Jan 16th, 2004, 03:18 PM
#3
Thread Starter
Registered User
right. i d'ont like ado much either.
so is there a way to define a database given some tables using an object other than the adox catalog?
-
Jan 16th, 2004, 03:24 PM
#4
Sleep mode
You can build your own database Scheme(whether empty or structured with tables and columns objs) and store it in XML file but not in mdb file . Again SQL can be built by ADO.NET using the SQL String 'Create' .
Simply , you just creates your objs (DataTable or DataColumn and add every obj to the corresponding collection ) .
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|