我正在处理的项目包含一个MDB(acecss数据库)文件。我想将表的内容导出为文本,但是很难找到使用C#轻松完成的方法。有没有比使用OLEDB和查询更快的方法?
更新: 理想情况下,我不想静态命名每个表(有数百个),我必须使用.NET 2.0或更低版本。
答案 0 :(得分:2)
没有明显的想法。只需编写迭代表格的内容,然后以您想要的任何文本格式(.csv,制表符分隔等)吐出数据。
你总是可以在Access内部的VBA中编写它,但我不知道是否会使它更快或更慢。
答案 1 :(得分:1)
可能有一种更有效的方法,但您可以将数据填充到DataTable
,然后导出到文本文件:
将数据导入DataTable
:
string connString = "Provider=Microsoft.ACE.OLEDB.12.0;data source=C:\\marcelo.accdb";
DataTable results = new DataTable();
using(OleDbConnection conn = new OleDbConnection(connString))
{
OleDbCommand cmd = new OleDbCommand("SELECT * FROM Clientes", conn);
conn.Open();
OleDbDataAdapter adapter = new OleDbDataAdapter(cmd);
adapter.Fill(results);
}
将DataTable
导出为CSV:
编辑我没有测试过这个,但是这样的东西应该适用于.NET 2.0。
//initialize the strinbuilder
StringBuilder sb = new StringBuilder();
//append the columns to the header row
string[] columns = new string[dt.Columns.Count - 1];
for (int i = 0; i < dt.Columns.Count; i++)
columns[i] = dt.Columns[i].ColumnName;
sb.AppendLine(string.Join(",", columns));
foreach (DataRow row in dt.Rows)
{
//append the data for each row in the table
string[] fields = new string[row.ItemArray.Length];
for (int x = 0; x < myDataRow.ItemArray.Length; x++)
arr[x] = row[x].ToString();
sb.AppendLine(string.Join(",", fields));
}
File.WriteAllText("test.csv", sb.ToString());
答案 2 :(得分:1)
如果您想要使用Interop路由,可以使用Access TransferText方法在单个命令中执行此操作:
using Access = Microsoft.Office.Interop.Access;
using System.Runtime.InteropServices;
static void ExportToCsv(string databasePath, string tableName, string csvFile) {
Access.Application app = new Access.Application();
app.OpenCurrentDatabase(databasePath);
Access.DoCmd doCmd = app.DoCmd;
doCmd.TransferText(Access.AcTextTransferType.acExportDelim, Type.Missing, tableName, csvFile, true);
app.CloseCurrentDatabase();
Marshal.FinalReleaseComObject(doCmd);
doCmd = null;
app.Quit();
Marshal.FinalReleaseComObject(app);
app = null;
}
答案 3 :(得分:1)
我不知道C#,但这是另一个想法,但非常粗糙。它使用Microsoft.Office.Interop.Access.Dao
DBEngine dbEng = new DBEngine();
Workspace ws = dbEng.CreateWorkspace("", "admin", "",
WorkspaceTypeEnum.dbUseJet);
Database db = ws.OpenDatabase("z:\\docs\\test.accdb", false, false, "");
foreach (TableDef tdf in db.TableDefs)
{
string tablename=tdf.Name;
if (tablename.Substring(0,4) != "MSys")
{
string sSQL = "SELECT * INTO [Text;FMT=Delimited;HDR=Yes;DATABASE=Z:\\Docs].[out_"
+ tablename + ".csv] FROM " + tablename;
db.Execute(sSQL);
}
}