Skip to content

Library for extracing the schema from an OleDb database.

License

Notifications You must be signed in to change notification settings

ekmsystems/DatabaseSchema

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DatabaseSchema

Library for extracting the schema from a database.

Build status Coverage Status NuGet

DatabaseSchema is available via NuGet:

Install-Package DatabaseSchema

Quick start

Here is a simple bit of code showing how to create and use an instance of the IDbSchemaReader.

using(var connection = new OleDbConnection("Data Source=MyDatabase.mdb;Provider=Microsoft.Jet.OLEDB.4.0;"))
{
    var schemaReader = new OleDbSchemaReader(connection);
    var schemas = schemaReader.GetSchemas();
    var schema = schemaReader.GetSchema("MyTable");
    // ...
}

About

Library for extracing the schema from an OleDb database.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages