亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
精品一区二区免费看| 在线视频国内自拍亚洲视频| 青青草97国产精品免费观看 | 欧美嫩在线观看| 91精品福利视频| 色先锋久久av资源部| 色婷婷香蕉在线一区二区| 91一区在线观看| av高清不卡在线| 色婷婷精品久久二区二区蜜臀av | 成年人午夜久久久| 久88久久88久久久| 紧缚奴在线一区二区三区| 久久av中文字幕片| 国产中文一区二区三区| 激情久久五月天| 国产高清无密码一区二区三区| 国产一区福利在线| 成人av午夜电影| 91女神在线视频| 欧美性受xxxx黑人xyx性爽| 精品视频1区2区| 91精品国产91久久综合桃花| 日韩欧美在线观看一区二区三区| 日韩午夜精品电影| 国产视频视频一区| 日韩毛片高清在线播放| 亚洲国产cao| 美国精品在线观看| 成人av免费在线观看| 色综合咪咪久久| 欧美日本一区二区三区| 精品国产一区二区精华| 国产精品三级视频| 亚洲国产综合在线| 久久99国产精品免费网站| 成人福利视频在线看| 欧美伊人久久久久久午夜久久久久| 欧美一区二区网站| 国产网红主播福利一区二区| 亚洲免费观看高清完整版在线观看 | 欧美日韩综合在线免费观看| 3d动漫精品啪啪1区2区免费| 久久久久综合网| 亚洲在线成人精品| 国产精品伊人色| 色婷婷久久综合| 久久婷婷综合激情| 亚洲免费观看高清完整版在线观看熊 | 色综合天天综合| 日韩一区二区三区三四区视频在线观看 | 欧美性做爰猛烈叫床潮| 欧美sm美女调教| 亚洲精品老司机| 国模无码大尺度一区二区三区| 91女神在线视频| 久久夜色精品国产欧美乱极品| ㊣最新国产の精品bt伙计久久| 亚洲444eee在线观看| 国产很黄免费观看久久| 欧美日韩久久久| 国产精品日产欧美久久久久| 奇米影视7777精品一区二区| 97se亚洲国产综合在线| 精品盗摄一区二区三区| 亚洲影视在线播放| 高清国产午夜精品久久久久久| 91麻豆精品国产91久久久使用方法| 国产无人区一区二区三区| 五月婷婷综合激情| 色综合久久九月婷婷色综合| 国产视频一区在线观看| 麻豆91在线播放免费| 欧美日韩视频第一区| 亚洲私人影院在线观看| 国产成人精品免费| 亚洲精品在线三区| 日韩高清国产一区在线| 91浏览器入口在线观看| 91麻豆国产精品久久| 91丝袜国产在线播放| 久久精品一级爱片| 男女激情视频一区| 欧美系列一区二区| 亚洲日本成人在线观看| 国产成人精品亚洲日本在线桃色| 日韩欧美一级片| 日韩电影在线免费看| 欧美色国产精品| 亚洲欧美日韩中文播放| 成人免费视频播放| 久久久不卡网国产精品二区| 精品一区二区在线观看| 日韩精品一区国产麻豆| 毛片av一区二区| 91精品国产综合久久精品图片| 午夜影院久久久| 欧美网站一区二区| 夜夜精品浪潮av一区二区三区| 97久久久精品综合88久久| 亚洲欧洲一区二区三区| av综合在线播放| 综合久久综合久久| 91一区二区在线| 亚洲男女一区二区三区| 91黄色免费版| 亚洲最大成人综合| 欧美亚洲一区二区三区四区| 亚洲综合区在线| 欧美色精品天天在线观看视频| 亚洲线精品一区二区三区八戒| 欧美日韩综合不卡| 日韩电影在线一区| 日韩欧美成人午夜| 国内外成人在线| 国产欧美视频一区二区| 99久久免费视频.com| 亚洲日本一区二区三区| 欧美亚洲尤物久久| 日本va欧美va欧美va精品| 精品国产伦一区二区三区观看方式| 国产在线一区观看| 欧美高清在线一区| 色婷婷av一区二区| 亚洲国产成人tv| 日韩一区二区三区在线观看| 国产资源精品在线观看| 中文字幕免费一区| 欧美性大战xxxxx久久久| 日本中文一区二区三区| 久久欧美中文字幕| av色综合久久天堂av综合| 亚洲欧美日韩国产综合| 欧美日韩国产不卡| 国内精品国产成人国产三级粉色| 国产精品你懂的在线欣赏| 91网站视频在线观看| 天堂一区二区在线| 久久久久久久久久看片| 91在线精品秘密一区二区| 午夜精品久久久久久久久久| 久久久精品蜜桃| 欧美影视一区在线| 韩国精品一区二区| 亚洲精品写真福利| 日韩久久久久久| 成人一区二区在线观看| 五月天激情综合网| 国产性做久久久久久| 欧美在线色视频| 国产日韩欧美a| 国产又粗又猛又爽又黄91精品| 亚洲国产精品高清| 欧美三级日韩三级国产三级| 国产精品一区二区久激情瑜伽| 亚洲一二三区视频在线观看| 精品久久久网站| 在线视频国内一区二区| 国产精品99久久久久久久vr| 亚洲精品国产精华液| 日韩欧美成人一区| 欧美中文字幕一区| 国产成人免费av在线| 午夜不卡av在线| 1024精品合集| 欧美www视频| 欧美少妇xxx| aaa欧美色吧激情视频| 国产最新精品精品你懂的| 亚洲二区在线观看| 中文乱码免费一区二区| 欧美一区二区性放荡片| 欧美在线视频你懂得| 成人app在线| 国产精品99久久久久久久vr| 偷窥国产亚洲免费视频| 中文字幕亚洲一区二区av在线 | 欧美一区二区免费视频| 91在线精品一区二区| 国产激情视频一区二区三区欧美| 日韩电影网1区2区| 一区二区三区美女| 中文在线免费一区三区高中清不卡 | 欧美r级在线观看| 欧美三级欧美一级| 99精品欧美一区二区三区综合在线| 久久se这里有精品| 日产精品久久久久久久性色| 亚洲一线二线三线视频| 亚洲欧美区自拍先锋| 国产精品午夜在线观看| ww亚洲ww在线观看国产| 欧美日韩国产天堂| 欧美三级在线看| 91视频精品在这里| 波多野结衣中文一区| 国产成人免费视频| 国产成人8x视频一区二区 | 在线视频一区二区三区| 91在线视频网址|