Executing multiple SQL (execute Script) in Informix

Source: Internet
Author: User
Tags informix

Sometimes we need to execute multiple SQL syntax at the same time in ADO, how do we handle it,

For example the following:

        //Check basic information        Private Static voidtestqry () {DataTable Dtreturn=NewDataTable (); //Find the Basics            Try            {                //Simulation Inquiry raw Material                stringSTRSQL1 =@"Select id,name from [email protected]:tablenameunionselect id,name from [email protected]:tablenameinto temp TMP_ TableName with no log;"; stringSTRSQL2 =@"select * from Tmp_tablename;"; stringSTRSQL3 =@"drop table tmp_tablename;"; using(Ifxconnection conn =Newifxconnection (GSCONNSTR)) {                    using(Ifxcommand cmd =NewIfxcommand (STRSQL1, conn)) {Conn.                        Open (); //Cmd.commandtype =CommandType.Text; Cmd.commandtext=STRSQL1; Cmd.                        ExecuteNonQuery (); using(Ifxdataadapter ad =NewIfxdataadapter (STRSQL2, conn)) {AD.                        Fill (Dtreturn); } Cmd.commandtype=CommandType.Text; Cmd.commandtext=StrSql3; Cmd.                        ExecuteNonQuery (); Conn.                    Close (); }                }            }            Catch(Exception ex) {Dtreturn=NULL; Console.WriteLine (ex.            Message); }        }

Executing multiple SQL (execute Script) in Informix

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.