One last hitch: in .Net 4/VS2010 the OLEDB component works only with a 32-bit build. So change the Platform target in the Project properties as follows:
Here's the code. I’ve made even less of an effort than usual to make the code “production quality”, but note that a couple of the classes I use are IDisposable so I’m taking care to wrap them in a “using” block.
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.OleDb;
using System.Linq;
using System.Text;
// None of this is foolproof...caveat emptor.
namespace AccessToDataSet {
class Program {
static void Main(string[] args) {
if (args.Length == 0 || !args[0].EndsWith(".mdb", StringComparison.InvariantCultureIgnoreCase)) {
Console.WriteLine("Please specify the path to an MDB file.");
return;
}
DataSet dataSet = new DataSet();
using (var conn = new OleDbConnection(@"Provider=Microsoft.JET.OLEDB.4.0;" + @"data source=" + args[0])) {
conn.Open();
// Retrieve the schema
DataTable schemaTable = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { null, null, null, "TABLE" });
// Fill the DataTables.
foreach (DataRow dataTableRow in schemaTable.Rows) {
string tableName = dataTableRow["Table_Name"].ToString();
// I seem to get an extra table starting with ~. I can't seem to screen it out based on information in schemaTable,
// hence this hacky check.
if (!tableName.StartsWith("~", StringComparison.InvariantCultureIgnoreCase)) {
FillTable(dataSet, conn, tableName);
}
}
}
string name = args[0].ToLowerInvariant();
dataSet.WriteXmlSchema(name.Replace(".mdb", ".schema.xml"));
dataSet.WriteXml(name.Replace(".mdb", ".xml"));
Read more: Nathan Brixius