Dynamic sql command : SqlCommand « ADO.net Database « ASP.Net

Home
ASP.Net
1.ADO.net Database
2.Ajax
3.Asp Control
4.Collections
5.Components
6.Data Binding
7.Development
8.File Directory
9.HTML Control
10.Language Basics
11.Login Security
12.Mobile Control
13.Network
14.Page
15.Request
16.Response
17.Server
18.Session Cookie
19.Sitemap
20.Theme Style
21.User Control and Master Page
22.Validation by Control
23.Validation by Function
24.WebPart
25.WPF
26.XML
ASP.Net » ADO.net Database » SqlCommand 
Dynamic sql command

<%@ Page Language="VB" %>
<script runat="server">
   Function FindByTitle(ByVal search As StringAs System.Data.DataSet
     Dim connectionString As String = "server='(local)\NetSDK'; trusted_connection=true; Database='pubs'"
     Dim sqlConnection As System.Data.SqlClient.SqlConnection = New System.Data.SqlClient.SqlConnection(connectionString)
    
     Dim queryString As String = "SELECT [titles].[title], [titles].[price], [titles].[notes], [titles].[pubdate] F"& _
       "ROM [titles] WHERE ([titles].[title] like @search)"
     Dim sqlCommand As System.Data.SqlClient.SqlCommand = New System.Data.SqlClient.SqlCommand(queryString, sqlConnection)
    
     sqlCommand.Parameters.Add("@search", System.Data.SqlDbType.NVarChar).Value = search
    
     Dim dataAdapter As System.Data.SqlClient.SqlDataAdapter = New System.Data.SqlClient.SqlDataAdapter(sqlCommand)
     Dim dataSet As System.Data.DataSet = New System.Data.DataSet
     dataAdapter.Fill(dataSet)
    
     Return dataSet
   End Function
    
  Sub Button1_Click(sender As Object, e As EventArgs)
     Dim sTitle As String = TextBox1.Text
     DataGrid1.DataSource = FindByTitle(sTitle)
     DataGrid1.DataBind()
  End Sub

</script>
<html>
<head>
</head>
<body>
    <form runat="server">
        <p>
            Find: 
            <asp:TextBox id="TextBox1" runat="server"></asp:TextBox>
            &nbsp;<asp:Button id="Button1" onclick="Button1_Click" runat="server" Text="Go"></asp:Button>
        </p>
        <p>
            <asp:DataGrid id="DataGrid1" runat="server" BorderWidth="5px" BorderColor="Olive" CellPadding="5">
                <HeaderStyle font-size="X-Small" font-names="Arial Narrow" font-bold="True" forecolor="White" backcolor="Olive"></HeaderStyle>
                <AlternatingItemStyle backcolor="Silver"></AlternatingItemStyle>
                <ItemStyle font-size="X-Small" font-names="Arial Narrow"></ItemStyle>
            </asp:DataGrid>
        </p>
    </form>
</body>
</html>

           
       
Related examples in the same category
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.