亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? microsoft.applicationblocks.data.xml

?? C#代碼查看Sqlserver等不同數據庫的源代碼
?? XML
?? 第 1 頁 / 共 4 頁
字號:
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.ApplicationBlocks.Data</name>
    </assembly>
    <members>
        <member name="T:Microsoft.ApplicationBlocks.Data.SqlHelper">
            <summary>
            The SqlHelper class is intended to encapsulate high performance, scalable best practices for 
            common uses of SqlClient.
            </summary>
        </member>
        <member name="M:Microsoft.ApplicationBlocks.Data.SqlHelper.AttachParameters(System.Data.SqlClient.SqlCommand,System.Data.SqlClient.SqlParameter[])">
            <summary>
            This method is used to attach array of SqlParameters to a SqlCommand.
            
            This method will assign a value of DbNull to any parameter with a direction of
            InputOutput and a value of null.  
            
            This behavior will prevent default values from being used, but
            this will be the less common case than an intended pure output parameter (derived as InputOutput)
            where the user provided no input value.
            </summary>
            <param name="command">The command to which the parameters will be added</param>
            <param name="commandParameters">an array of SqlParameters tho be added to command</param>
        </member>
        <member name="M:Microsoft.ApplicationBlocks.Data.SqlHelper.AssignParameterValues(System.Data.SqlClient.SqlParameter[],System.Object[])">
            <summary>
            This method assigns an array of values to an array of SqlParameters.
            </summary>
            <param name="commandParameters">array of SqlParameters to be assigned values</param>
            <param name="parameterValues">array of objects holding the values to be assigned</param>
        </member>
        <member name="M:Microsoft.ApplicationBlocks.Data.SqlHelper.PrepareCommand(System.Data.SqlClient.SqlCommand,System.Data.SqlClient.SqlConnection,System.Data.SqlClient.SqlTransaction,System.Data.CommandType,System.String,System.Data.SqlClient.SqlParameter[])">
            <summary>
            This method opens (if necessary) and assigns a connection, transaction, command type and parameters 
            to the provided command.
            </summary>
            <param name="command">the SqlCommand to be prepared</param>
            <param name="connection">a valid SqlConnection, on which to execute this command</param>
            <param name="transaction">a valid SqlTransaction, or 'null'</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <param name="commandParameters">an array of SqlParameters to be associated with the command or 'null' if no parameters are required</param>
        </member>
        <member name="M:Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(System.String,System.Data.CommandType,System.String)">
            <summary>
            Execute a SqlCommand (that returns no resultset and takes no parameters) against the database specified in 
            the connection string. 
            </summary>
            <remarks>
            e.g.:  
             int result = ExecuteNonQuery(connString, CommandType.StoredProcedure, "PublishOrders");
            </remarks>
            <param name="connectionString">a valid connection string for a SqlConnection</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <returns>an int representing the number of rows affected by the command</returns>
        </member>
        <member name="M:Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(System.String,System.Data.CommandType,System.String,System.Data.SqlClient.SqlParameter[])">
            <summary>
            Execute a SqlCommand (that returns no resultset) against the database specified in the connection string 
            using the provided parameters.
            </summary>
            <remarks>
            e.g.:  
             int result = ExecuteNonQuery(connString, CommandType.StoredProcedure, "PublishOrders", new SqlParameter("@prodid", 24));
            </remarks>
            <param name="connectionString">a valid connection string for a SqlConnection</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <param name="commandParameters">an array of SqlParamters used to execute the command</param>
            <returns>an int representing the number of rows affected by the command</returns>
        </member>
        <member name="M:Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(System.String,System.String,System.Object[])">
            <summary>
            Execute a stored procedure via a SqlCommand (that returns no resultset) against the database specified in 
            the connection string using the provided parameter values.  This method will query the database to discover the parameters for the 
            stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
            </summary>
            <remarks>
            This method provides no access to output parameters or the stored procedure's return value parameter.
            
            e.g.:  
             int result = ExecuteNonQuery(connString, "PublishOrders", 24, 36);
            </remarks>
            <param name="connectionString">a valid connection string for a SqlConnection</param>
            <param name="spName">the name of the stored prcedure</param>
            <param name="parameterValues">an array of objects to be assigned as the input values of the stored procedure</param>
            <returns>an int representing the number of rows affected by the command</returns>
        </member>
        <member name="M:Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(System.Data.SqlClient.SqlConnection,System.Data.CommandType,System.String)">
            <summary>
            Execute a SqlCommand (that returns no resultset and takes no parameters) against the provided SqlConnection. 
            </summary>
            <remarks>
            e.g.:  
             int result = ExecuteNonQuery(conn, CommandType.StoredProcedure, "PublishOrders");
            </remarks>
            <param name="connection">a valid SqlConnection</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <returns>an int representing the number of rows affected by the command</returns>
        </member>
        <member name="M:Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(System.Data.SqlClient.SqlConnection,System.Data.CommandType,System.String,System.Data.SqlClient.SqlParameter[])">
            <summary>
            Execute a SqlCommand (that returns no resultset) against the specified SqlConnection 
            using the provided parameters.
            </summary>
            <remarks>
            e.g.:  
             int result = ExecuteNonQuery(conn, CommandType.StoredProcedure, "PublishOrders", new SqlParameter("@prodid", 24));
            </remarks>
            <param name="connection">a valid SqlConnection</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <param name="commandParameters">an array of SqlParamters used to execute the command</param>
            <returns>an int representing the number of rows affected by the command</returns>
        </member>
        <member name="M:Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(System.Data.SqlClient.SqlConnection,System.String,System.Object[])">
            <summary>
            Execute a stored procedure via a SqlCommand (that returns no resultset) against the specified SqlConnection 
            using the provided parameter values.  This method will query the database to discover the parameters for the 
            stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
            </summary>
            <remarks>
            This method provides no access to output parameters or the stored procedure's return value parameter.
            
            e.g.:  
             int result = ExecuteNonQuery(conn, "PublishOrders", 24, 36);
            </remarks>
            <param name="connection">a valid SqlConnection</param>
            <param name="spName">the name of the stored procedure</param>
            <param name="parameterValues">an array of objects to be assigned as the input values of the stored procedure</param>
            <returns>an int representing the number of rows affected by the command</returns>
        </member>
        <member name="M:Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(System.Data.SqlClient.SqlTransaction,System.Data.CommandType,System.String)">
            <summary>
            Execute a SqlCommand (that returns no resultset and takes no parameters) against the provided SqlTransaction. 
            </summary>
            <remarks>
            e.g.:  
             int result = ExecuteNonQuery(trans, CommandType.StoredProcedure, "PublishOrders");
            </remarks>
            <param name="transaction">a valid SqlTransaction</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <returns>an int representing the number of rows affected by the command</returns>
        </member>
        <member name="M:Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(System.Data.SqlClient.SqlTransaction,System.Data.CommandType,System.String,System.Data.SqlClient.SqlParameter[])">
            <summary>
            Execute a SqlCommand (that returns no resultset) against the specified SqlTransaction
            using the provided parameters.
            </summary>
            <remarks>
            e.g.:  
             int result = ExecuteNonQuery(trans, CommandType.StoredProcedure, "GetOrders", new SqlParameter("@prodid", 24));
            </remarks>
            <param name="transaction">a valid SqlTransaction</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>
            <param name="commandText">the stored procedure name or T-SQL command</param>
            <param name="commandParameters">an array of SqlParamters used to execute the command</param>
            <returns>an int representing the number of rows affected by the command</returns>
        </member>
        <member name="M:Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(System.Data.SqlClient.SqlTransaction,System.String,System.Object[])">
            <summary>
            Execute a stored procedure via a SqlCommand (that returns no resultset) against the specified 
            SqlTransaction using the provided parameter values.  This method will query the database to discover the parameters for the 
            stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
            </summary>
            <remarks>
            This method provides no access to output parameters or the stored procedure's return value parameter.
            
            e.g.:  
             int result = ExecuteNonQuery(conn, trans, "PublishOrders", 24, 36);
            </remarks>
            <param name="transaction">a valid SqlTransaction</param>
            <param name="spName">the name of the stored procedure</param>
            <param name="parameterValues">an array of objects to be assigned as the input values of the stored procedure</param>
            <returns>an int representing the number of rows affected by the command</returns>
        </member>
        <member name="M:Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteDataset(System.String,System.Data.CommandType,System.String)">
            <summary>
            Execute a SqlCommand (that returns a resultset and takes no parameters) against the database specified in 
            the connection string. 
            </summary>
            <remarks>
            e.g.:  
             DataSet ds = ExecuteDataset(connString, CommandType.StoredProcedure, "GetOrders");
            </remarks>
            <param name="connectionString">a valid connection string for a SqlConnection</param>
            <param name="commandType">the CommandType (stored procedure, text, etc.)</param>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
天堂午夜影视日韩欧美一区二区| 国产精品二区一区二区aⅴ污介绍| av一二三不卡影片| 久久99精品久久久久久久久久久久 | 91蜜桃免费观看视频| 国产精品一区在线观看乱码| 另类专区欧美蜜桃臀第一页| 久久国产成人午夜av影院| 三级在线观看一区二区| 日韩精品91亚洲二区在线观看 | 欧美视频精品在线观看| 91国产免费看| 91精品国产综合久久香蕉麻豆| 欧美精品丝袜久久久中文字幕| 欧美一区日本一区韩国一区| 精品久久人人做人人爰| 国产日本亚洲高清| 日韩伦理免费电影| 亚洲成av人片| 精品一区二区日韩| 国产成人av电影在线| 91麻豆国产香蕉久久精品| 欧美中文字幕久久| 欧美一级片在线| 久久精品网站免费观看| 亚洲美女在线国产| 奇米一区二区三区av| 国产一区二区三区四| kk眼镜猥琐国模调教系列一区二区| 91小视频免费观看| 欧美一区二区在线播放| 中文字幕欧美激情| 亚洲一二三专区| 精彩视频一区二区| 在线视频欧美区| 欧美成人精品福利| 亚洲欧洲美洲综合色网| 日韩精品免费视频人成| 国产大陆精品国产| 欧美人xxxx| 国产精品三级久久久久三级| 亚洲va欧美va天堂v国产综合| 国产米奇在线777精品观看| 日本二三区不卡| 欧美精品一区二区三区蜜臀| 亚洲精品va在线观看| 国产乱子伦视频一区二区三区| 色婷婷久久久亚洲一区二区三区| 日韩精品资源二区在线| 亚洲欧美日韩电影| 国产一区二区三区视频在线播放| 欧美日韩高清影院| 亚洲男人的天堂av| 国产成人在线观看免费网站| 欧美福利视频一区| 亚洲欧美日韩中文字幕一区二区三区 | 国产亚洲成aⅴ人片在线观看| 一区二区久久久久| 波多野结衣中文字幕一区| 欧美一区二区三区视频免费播放| 亚洲免费在线播放| 成人免费av资源| 久久久综合网站| 六月丁香综合在线视频| 欧美日韩大陆在线| 亚洲成年人影院| 色天使久久综合网天天| 最新欧美精品一区二区三区| 国产一本一道久久香蕉| 精品久久人人做人人爱| 免费精品视频在线| 欧美巨大另类极品videosbest | 视频在线观看一区二区三区| 日本久久电影网| 亚洲精品美国一| 成人av在线一区二区| 国产精品久久久久久久裸模| 成人福利视频在线| 国产精品美女久久久久av爽李琼 | 国产成+人+日韩+欧美+亚洲| 2020国产成人综合网| 久久er99精品| 亚洲精品一区二区三区福利| 激情综合网天天干| 26uuu欧美| 粉嫩一区二区三区在线看| 欧美国产精品一区| 成人av在线资源| 一区二区三区在线免费视频| 在线亚洲高清视频| 三级欧美韩日大片在线看| 91精品欧美福利在线观看| 久久91精品国产91久久小草| 26uuu精品一区二区| 成人美女视频在线看| 成人欧美一区二区三区黑人麻豆| 一本色道久久综合亚洲91| 性欧美疯狂xxxxbbbb| 日韩欧美一级二级| 成人午夜免费视频| 亚洲福利一二三区| 日韩精品一区二区三区在线播放 | 色综合咪咪久久| 婷婷中文字幕综合| 久久精品视频免费| 欧美亚洲动漫制服丝袜| 美女性感视频久久| 国产精品久久久久一区| 欧美另类z0zxhd电影| 国产一区二区91| 亚洲综合在线免费观看| 欧美成人一区二区三区片免费| 成人国产精品视频| 三级久久三级久久久| 国产精品网站一区| 欧美日韩国产一级二级| 懂色av中文字幕一区二区三区| 亚洲一区在线观看网站| 久久毛片高清国产| 欧美色图在线观看| 成人一级黄色片| 日本欧美一区二区| 亚洲精品乱码久久久久久日本蜜臀| 7777精品伊人久久久大香线蕉的 | 久久成人18免费观看| 《视频一区视频二区| 日韩一级片网址| 在线免费观看日本欧美| 国内欧美视频一区二区 | 日韩高清一级片| 亚洲日本中文字幕区| 久久亚洲综合色| 欧美精品日韩精品| 色综合色综合色综合| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 国产一区二区视频在线播放| 亚洲一区二区三区三| 亚洲色图视频免费播放| 久久亚区不卡日本| 欧美日韩国产大片| 欧美性极品少妇| 色综合久久88色综合天天6| 国产高清亚洲一区| 国内精品免费**视频| 青草av.久久免费一区| 亚洲第一二三四区| 一区二区三区精品视频| 亚洲免费av高清| 亚洲三级电影全部在线观看高清| 国产精品午夜电影| 国产精品国产自产拍高清av王其| 国产亚洲短视频| 久久久av毛片精品| 久久久久99精品一区| 久久久不卡网国产精品二区| 精品国产电影一区二区| 欧美变态口味重另类| 2017欧美狠狠色| 欧美国产欧美综合| 国产精品的网站| 亚洲色图在线播放| 一区二区三区不卡视频在线观看 | 亚洲国产日韩av| 亚洲国产日产av| 日本不卡一区二区三区| 老司机午夜精品99久久| 精品一区二区在线播放| 国产91在线观看| 91农村精品一区二区在线| 色综合天天综合在线视频| 在线观看日韩国产| 91麻豆精品国产| 精品精品国产高清一毛片一天堂| 久久久久九九视频| 亚洲日本va在线观看| 亚洲高清不卡在线观看| 六月婷婷色综合| 不卡大黄网站免费看| 欧美日韩激情在线| 精品99999| 亚洲日本一区二区| 日韩不卡免费视频| 高清国产午夜精品久久久久久| 色婷婷亚洲婷婷| 精品欧美久久久| 亚洲色图在线看| 捆绑紧缚一区二区三区视频| 国产**成人网毛片九色| 欧美综合在线视频| www久久久久| 亚洲午夜在线视频| 精品一区二区三区视频| 91丨porny丨最新| 欧美一区二区三区四区久久| 中文字幕在线播放不卡一区| 日韩和欧美一区二区| av高清久久久| 精品国产乱码久久久久久免费| 亚洲精品国产第一综合99久久| 青青草国产成人99久久|