SqlDataSourceCommandType 枚举

定义

描述 SQL 命令的类型,执行数据库操作时,SqlDataSource 控件和 AccessDataSource 控件将使用此 SQL 命令。

public enum class SqlDataSourceCommandType
public enum SqlDataSourceCommandType
type SqlDataSourceCommandType = 
Public Enum SqlDataSourceCommandType
继承
SqlDataSourceCommandType

字段

StoredProcedure 1

相应的文本属性中包含的文本为存储过程的名称。

Text 0

相应的文本属性中包含的文本为 SQL 查询或命令。

示例

下面的代码示例演示如何将SelectCommand文本设置为存储过程的名称,并将SelectCommandType属性设置为 StoredProcedure 值,以便从Microsoft SQL Server数据库中检索数据并将其显示在数据库中DropDownList

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="form1" runat="server">

            <asp:DropDownList
                id="DropDownList1"
                runat="server"
                DataTextField="LastName"
                DataSourceID="SqlDataSource1" />

            <asp:SqlDataSource
                id="SqlDataSource1"
                runat="server"
                ConnectionString="<%$ ConnectionStrings:MyNorthwind%>"
                SelectCommandType="StoredProcedure"                
                SelectCommand="sp_lastnames">
            </asp:SqlDataSource>

            <!--
                The sp_lastnames stored procedure is
                CREATE PROCEDURE sp_lastnames AS
                   SELECT LastName FROM Employees
                GO
            -->

        </form>
    </body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="form1" runat="server">

            <asp:DropDownList
                id="DropDownList1"
                runat="server"
                DataTextField="LastName"
                DataSourceID="SqlDataSource1" />

            <asp:SqlDataSource
                id="SqlDataSource1"
                runat="server"
                ConnectionString="<%$ ConnectionStrings:MyNorthwind%>"
                SelectCommandType = "StoredProcedure"
                SelectCommand="sp_lastnames">
            </asp:SqlDataSource>

            <!--
                The sp_lastnames stored procedure is
                CREATE PROCEDURE sp_lastnames AS
                   SELECT LastName FROM Employees
                GO
            -->

        </form>
    </body>
</html>

注解

枚举SqlDataSourceCommandTypeAccessDataSourceSqlDataSource控件用来描述包含在 、InsertCommandUpdateCommandDeleteCommand属性中的SelectCommandSQL命令的类型。 Text 值指示文本是一个SQL查询或命令字符串,而 StoredProcedure 值指示文本是存储过程的名称。

适用于

另请参阅