c#中高效的excel导入oracle的方法

c#中高效的excel导入oracle的方法

2009年04月21日 星期二 下午 07:57

如何高效的将excel导入到oracle?和前两天的SqlBulkCopy 导入到sqlserver对应,oracle也有自身的方法,只是稍微复杂些.
那就是使用oracle的sql*loader功能,而sqlldr只支持类似csv格式的数据,所以要自己把excel转换一下。
实现步骤:
用com组件读取excel-保存为csv格式-处理最后一个字段为null的情况和表头-根据excel结构建表-生成sqlldr的控制文件-用sqlldr命令导入数据
这个性能虽然没有sql的bcp快,但还是相当可观的,在我机器上1万多数据不到4秒,而且导入过程代码比较简单,也同样没有循环拼接sql插入那么难以维护。

这里也提个问题:处理csv文件的表头和最后一个字段为null的情况是否可以优化?除了我代码中的例子,我实在想不出其他办法。

using System;

using System.Data;

using System.Text;

using System.Windows.Forms;

using Microsoft.Office.Interop.Excel;

using System.Data.OleDb;

//引用-com-microsoft excel objects 11.0

namespace WindowsApplication5

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }

 

        ///

        /// excel导入到oracle

        ///

        /// 文件名

        /// sheet

        /// oracle命令sqlplus连接串

        public void TransferData(string excelFile, string sheetName, string sqlplusString)

        {

            string strTempDir = System.IO.Path.GetDirectoryName(excelFile);

            string strFileName = System.IO.Path.GetFileNameWithoutExtension(excelFile);

            string strCsvPath = strTempDir +"\\"+strFileName + ".csv";

            string strCtlPath = strTempDir + "\\" + strFileName + ".Ctl";

            string strSqlPath = strTempDir + "\\" + strFileName + ".Sql";

            if (System.IO.File.Exists(strCsvPath))

                System.IO.File.Delete(strCsvPath);

 

            //获取excel对象

            Microsoft.Office.Interop.Excel.Application ObjExcel = new Microsoft.Office.Interop.Excel.Application();

 

            Microsoft.Office.Interop.Excel.Workbook ObjWorkBook;

 

            Microsoft.Office.Interop.Excel.Worksheet ObjWorkSheet = null;

 

            ObjWorkBook = ObjExcel.Workbooks.Open(excelFile, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);

 

            foreach (Microsoft.Office.Interop.Excel.Worksheet sheet in ObjWorkBook.Sheets)

            {

                if (sheet.Name.ToLower() == sheetName.ToLower())

                {

                    ObjWorkSheet = sheet;

                    break;

                }

            }

            if (ObjWorkSheet == null) throw new Exception(string.Format("{0} not found!!", sheetName));

 

            //保存为csv临时文件

            ObjWorkSheet.SaveAs(strCsvPath, Microsoft.Office.Interop.Excel.XlFileFormat.xlCSV, Type.Missing, Type.Missing, false, false, false, Type.Missing, Type.Missing, false);

            ObjWorkBook.Close(false, Type.Missing, Type.Missing);

            ObjExcel.Quit();

 

            //读取csv文件,需要将表头去掉,并且将最后一列为null的字段处理为显示的null,否则oracle不会识别,这个步骤有没有好的替换方法?

            System.IO.StreamReader reader = new System.IO.StreamReader(strCsvPath,Encoding.GetEncoding("gb2312"));

            string strAll = reader.ReadToEnd();

            reader.Close();

            string strData = strAll.Substring(strAll.IndexOf("\r\n") + 2).Replace(",\r\n",",Null");

 

            byte[] bytes = System.Text.Encoding.Default.GetBytes(strData);

            System.IO.Stream ms = System.IO.File.Create(strCsvPath);

            ms.Write(bytes, 0, bytes.Length);

            ms.Close();

 

            //获取excel表结构

            string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + excelFile + ";" + "Extended Properties=Excel 8.0;";

            OleDbConnection conn = new OleDbConnection(strConn);

            conn.Open();

            System.Data.DataTable table = conn.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Columns,

                new object[] { null, null, sheetName+"$", null });

 

            //生成sqlldr用到的控制文件,文件结构参考sql*loader功能,本示例已逗号分隔csv,数据带逗号的用引号括起来。  

            string strControl = "load data\r\ninfile '{0}' \r\nappend into table {1}\r\n"+   

                  "FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '\"'\r\n(";  

            strControl = string.Format(strControl, strCsvPath,sheetName);

            foreach (System.Data.DataRow drowColumns in table.Select("1=1", "Ordinal_Position"))

            {

                strControl += drowColumns["Column_Name"].ToString() + ",";

            }

 

            strControl = strControl.Substring(0, strControl.Length - 1) + ")";

            bytes=System.Text.Encoding.Default.GetBytes(strControl);

            ms= System.IO.File.Create(strCtlPath);

 

            ms.Write(bytes, 0, bytes.Length);

            ms.Close();

 

            //生成初始化oracle表结构的文件

           string strSql = @"drop table {0};           

                  create table {0} 

                  (";

            strSql = string.Format(strSql, sheetName);

            foreach (System.Data.DataRow drowColumns in table.Select("1=1", "Ordinal_Position"))

            {

                strSql += drowColumns["Column_Name"].ToString() + " varchar2(255),";

            }

            strSql = strSql.Substring(0, strSql.Length - 1) + ");\r\nexit;";

            bytes = System.Text.Encoding.Default.GetBytes(strSql);

            ms = System.IO.File.Create(strSqlPath);

 

            ms.Write(bytes, 0, bytes.Length);

            ms.Close();

 

            //运行sqlplus,初始化表

            System.Diagnostics.Process p = new System.Diagnostics.Process();

            p.StartInfo = new System.Diagnostics.ProcessStartInfo();

            p.StartInfo.FileName = "sqlplus";

            p.StartInfo.Arguments = string.Format("{0} @{1}", sqlplusString, strSqlPath);

            p.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;

            p.StartInfo.UseShellExecute = false;

            p.StartInfo.CreateNoWindow = true;

            p.Start();

            p.WaitForExit();

 

            //运行sqlldr,导入数据

            p = new System.Diagnostics.Process();

            p.StartInfo = new System.Diagnostics.ProcessStartInfo();

            p.StartInfo.FileName = "sqlldr";

            p.StartInfo.Arguments = string.Format("{0} {1}", sqlplusString, strCtlPath);

            p.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;

            p.StartInfo.RedirectStandardOutput = true;

            p.StartInfo.UseShellExecute = false;

            p.StartInfo.CreateNoWindow = true;

            p.Start();

            System.IO.StreamReader r = p.StandardOutput;//截取输出流

            string line = r.ReadLine();//每次读取一行

            textBox3.Text += line + "\r\n";

            while (!r.EndOfStream)

            {

                line = r.ReadLine();

                textBox3.Text += line + "\r\n";

                textBox3.Update();

            }

            p.WaitForExit();

 

            //可以自行解决掉临时文件csv,ctl和sql,代码略去

        }

 

        private void button1_Click(object sender, EventArgs e)

        {

            TransferData(@"D:\test.xls", "Sheet1", "username/password@servicename");

        }

       

    }

}

 

转载于:https://www.cnblogs.com/hanhaodong/archive/2010/06/30/1768167.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Excel文件的数据导入Oracle数据库可以使用以下步骤: 1. 首先,需要将Excel文件读取到C#,可以使用NPOI库来读取Excel文件的数据。 2. 连接Oracle数据库,并打开连接。 3. 创建一个OracleCommand对象,该对象用于执行SQL命令。 4. 遍历Excel文件的每一行数据,并将数据插入到Oracle数据库,可以使用OracleCommand对象的ExecuteNonQuery方法来执行SQL语句。 以下是一个示例代码: ```csharp using System; using System.Data; using System.Data.OracleClient; using NPOI.HSSF.UserModel; using NPOI.SS.UserModel; using NPOI.SS.Util; // 读取Excel文件 HSSFWorkbook workbook = new HSSFWorkbook(new FileStream("Excel文件路径", FileMode.Open)); ISheet sheet = workbook.GetSheetAt(0); // 连接Oracle数据库 string connectionString = "Data Source=数据库地址;User ID=用户名;Password=密码;"; OracleConnection connection = new OracleConnection(connectionString); connection.Open(); // 创建OracleCommand对象 OracleCommand command = new OracleCommand(); command.Connection = connection; // 遍历Excel文件的每一行数据,将数据插入到Oracle数据库 for (int i = sheet.FirstRowNum + 1; i <= sheet.LastRowNum; i++) { IRow row = sheet.GetRow(i); if (row == null) continue; string col1 = row.GetCell(0).ToString().Trim(); string col2 = row.GetCell(1).ToString().Trim(); string col3 = row.GetCell(2).ToString().Trim(); string sql = "insert into table_name(col1, col2, col3) values(:col1, :col2, :col3)"; command.CommandText = sql; command.Parameters.Clear(); command.Parameters.Add(new OracleParameter(":col1", col1)); command.Parameters.Add(new OracleParameter(":col2", col2)); command.Parameters.Add(new OracleParameter(":col3", col3)); command.ExecuteNonQuery(); } // 关闭连接 connection.Close(); ``` 需要注意的是,在执行SQL语句时,使用了参数化查询,可以防止SQL注入攻击。另外,需要根据Excel文件和Oracle数据库的实际情况,修改代码的表名、列名和连接字符串等信息。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值