need to know the exact info of database and containing tables using c#. database is MS access.i want to full info of the tables in it like primary key,max length,not null of the columns in tables in ms access database,etc.. so whats the best way of doing it....
advanced thanx for any kind of help.
another issue is getschema gives me datatypes in numeric way like 130,131.. so how can i use them in create table query they give error
let me explain what i am trying to do.i want to recreate the database about which i have no information.i don't know about its size,tables,data or any thing. actually i have succeeded to an extent.what i have done is i get the db name and create it with CatalogClass and with getschema(tables) i get all the table names and create them with create table from C#.then column names with alter table.and now i have to give it constraints which are in the DB which have been provided. so,other then this method i have used is there any thing else which i am missing.any easy or better way available to do this.so, it can go faster
question is still open