C # How to bulk import data from a dataset into an Oracle database

Source: Internet
Author: User
Tags oracleconnection

Do not write INSERT statements, because there are too many database fields, what is the simple point of the efficient method?
Public void Multiinsertdata (DataSet ds)
{
string connt = "Connection string for Oracle";
String sql = "Select Id,name,... from tablename"; must be consistent with the DS
DataTable dt = ds. Defaults[0];
OracleConnection conn = new OracleConnection (CONNSTR);
OracleCommand cmd = new OracleCommand (SQL, conn);
Conn. Open ();
OracleDataAdapter da = new OracleDataAdapter (sqlcmd);
Oraclecommandbuilder cb = new Oraclecommandbuilder (Sqlda);
da. Update (DT);
Conn. Close ();
sqlconn. Dispose ();
}
Use this batch to import, fast, and convenient
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.