C#处理access数据库结构

C#处理access数据库结构

ID:42604887

大小:24.52 KB

页数:7页

时间:2019-09-18

C#处理access数据库结构_第1页
C#处理access数据库结构_第2页
C#处理access数据库结构_第3页
C#处理access数据库结构_第4页
C#处理access数据库结构_第5页
资源描述:

《C#处理access数据库结构》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、C#处理access数据库结构usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Data.OleDb;usingSystem.Data;usingSystem.Windows.Forms;namespaceNewUserControl{publicclassAccessTableCopy{///

///获取两个数据库的路径//////老数据库的路径

2、m>///新数据库的路径publicvoidGetTwoAccessConnection(stringoldpath,stringnewpath){OleDbConnectionnewconnection;stringconnStr="Provider=Microsoft.ACE.OLEDB.12.0;DataSource="+newpath+";PersistSecurityInfo=False";newconnection=newOleDbConnection(conn

3、Str);stringoldconnStr="Provider=Microsoft.ACE.OLEDB.12.0;DataSource="+oldpath+";PersistSecurityInfo=False";OleDbConnectionoldconnection;oldconnection=newOleDbConnection(oldconnStr);this.BatchUpdate(newconnection,oldconnection,oldpath);}///

///批量执行更新数据///

4、ary>///新数据库的连接///旧数据库的连接///老数据库的路径publicvoidBatchUpdate(OleDbConnectionnewconnection,OleDbConnectionoldconnection,stringoldpath){//获取旧数据库中的表列表Listoldtablelist=th

5、is.GetTableName(oldconnection);//获取新的数据库中的表Listnewtablelist=this.GetTableName(newconnection);for(inti=0;i

6、(oldtablename.ToLower()==newtablename.ToLower()){//获取老数据库表中的表字段,并处理成符合sql标准Listlistold=this.GetTableColumn(oldtablename,oldconnection);stringoldcolumns="";string[]columnname=newstring[listold.Count];foreach(stringlstinlistold){oldcolumns+=lst+",";}oldcolumns=o

7、ldcolumns.Remove(oldcolumns.LastIndexOf(","),1);oldcolumns.Trim();//生成sql语句stringsql="";sql="insertinto"+oldtablename+"("+oldcolumns+")select"+oldcolumns+"from[;database="+oldpath+";]."+oldtablename+"";using(OleDbCommandcommand=newOleDbCommand(sql,newconnection)){newc

8、onnection.Open();command.ExecuteNonQuery();newconnection.Close();}//获取指定表的主关键字段名称string[]spiltname=this.PrimaryKeyName(oldta

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。