您好,登錄后才能下訂單哦!
這篇文章給大家介紹如何在asp.net中使用存儲過程實現模糊查詢,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
代碼如下:
USE [TestDB]
GO
/****** Object: Table [dbo].[tblCustomer] Script Date: 01/18/2014 22:01:53 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tblCustomer](
[id] [int] IDENTITY(1,1) NOT NULL,
[name] [nvarchar](100) NULL,
[dat] [date] NULL
) ON [PRIMARY]
GO模糊查詢
復制代碼 代碼如下:
CREATE PROCEDURE SearchCustomer
-- Add the parameters for the stored procedure here
@name nvarchar(100)
AS
SELECT * FROM dbo.tblCustomer WHERE name LIKE '%'+@name+'%'
GO
復制代碼 代碼如下:
using (SqlConnection cn = new SqlConnection("Server=localhost;Database=TestDB;Trusted_Connection=True;"))
{
cn.Open();
string str = "關鍵字";
//str = null;
SqlCommand cmd = new SqlCommand("SearchCustomer", cn);
cmd.CommandType = CommandType.StoredProcedure;
DataTable dt = new DataTable();
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.SelectCommand.Parameters.Add("@name", SqlDbType.NVarChar).Value = str;
da.Fill(dt);
Debug.Assert(dt.Rows.Count > 0);
GridView1.DataSource=dt;
GridView1.Bind();
cn.Close();
}
關于如何在asp.net中使用存儲過程實現模糊查詢就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。