Home › Forums › C# Programming › sql query problem
- This topic has 0 replies, 1 voice, and was last updated 18 years, 9 months ago by msaqib.
Viewing 0 reply threads
- AuthorPosts
- February 3, 2006 at 12:38 pm #1927msaqibParticipant123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Data.OleDb;using System.Drawing;using System.Web;using System.Web.SessionState;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.HtmlControls;namespace lms{/// <summary>/// Summary description for inc_search_books./// </summary>public class inc_search_books : System.Web.UI.Page{protected System.Web.UI.WebControls.TextBox Q;protected System.Web.UI.WebControls.Button Button1;protected System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1;protected System.Web.UI.WebControls.Label Label1;protected System.Web.UI.WebControls.DropDownList SearchType;private void Page_Load(object sender, System.EventArgs e){// Put user code to initialize the page hereif (Session["Student"]!="Yes"){Response.Redirect("Login1.aspx");}}#region Web Form Designer generated codeoverride protected void OnInit(EventArgs e){//// CODEGEN: This call is required by the ASP.NET Web Form Designer.//InitializeComponent();base.OnInit(e);}/// <summary>/// Required method for Designer support - do not modify/// the contents of this method with the code editor./// </summary>private void InitializeComponent(){this.Button1.Click += new System.EventHandler(this.Button1_Click);this.Load += new System.EventHandler(this.Page_Load);}#endregionprivate void Button1_Click(object sender, System.EventArgs e){if (Q.Text!=""){string source = "";switch (SearchType.SelectedIndex){case 0:source = "select * from book where name like '*" + Q.Text.ToString() + "*' OR description like '*" + Q.Text.ToString() + "*'";break;case 1:source = "select * from book where isbn like '*" + Q.Text.ToString() + "*'";break;case 2:source = "select * from book where publisher like '*" + Q.Text.ToString() + "*'";break;default:source = "select * from book";break;}Response.Write(source);OleDbConnection con = new OleDbConnection(System.Configuration.ConfigurationSettings.A ppSettings["MM_CONNECTION_STRING_lms"]);con.Open();OleDbCommand cmd=new OleDbCommand(source,con);OleDbDataReader r = cmd.ExecuteReader();string StrResult="<table width=100% style="border:1px solid #ffffff;">";StrResult += "<tr><td align=center height=35 valign=middle style="border:1px solid #ffffff;background-color:#fed500;color:#000000;"><b&g t;Search Results</b></td></tr>";while(r.Read()){StrResult += "<tr><td><div class=header><b>" + r["Name"] + "</b> by "+ r["authors"] +"</div><BR>"+r["description"] +"</td></tr>";StrResult += "<tr><td><b>Price: </b>"+ r["price"] +" | ";StrResult += "<b>ISBN: </b>"+ r["isbn"] +" | ";StrResult += "<b>Quantity: </b>"+ r["NoOfAvailableBooks"] +" | ";StrResult += "<b>Publisher: </b>"+ r["publisher"] +" | ";if (r["status"].ToString()=="True"){StrResult += "<b>Available: </b><font color=00ff00>Yes</font>";}else{StrResult += "<b>Available: </b><font color=fed500>No</font>";}if (r["type"].ToString()=="True"){StrResult += " | <b>PDF: </b><font color=00ff00>Yes</font>";}else{StrResult += " | <b>PDF: </b><font color=fed500>No</font>";}StrResult += " | <a href="inc_request_book.aspx?BookID="+r ["Id"] +"">Request to Issue this book</a>";StrResult +="<BR><strong>Accession #: </strong>" +r["Accession"].ToString()+"</td></tr>";}StrResult += "</table>";r.Close();con.Close();cmd.Dispose();Label1.Text=StrResult;}}}}
This is an asp.net web page source code in C#. on the Button1_Click event it searches the data base and returns the records fetched. We create the query on the basis of drop down list box ‘SearchType’ and the query text from the text box ‘Q’. Now when it creates the query that query doesnt return any record. for example for slected index 1 and Q=”x” it shows no result from the data base which have the following table and records.
12345name description isbn publisherXML XML 123 wroxExecutive Executive Management 232 wroxMarketing Introduction to Marketing 2322 wroxEngineering Electrical Engineering 333 wroxquery it generates is:
select * from book where name like '*x*' OR description like '*x*';
but when i run this query in MS access database it returns the two records. Why is it so, any one have an idea. thanks- This topic was modified 1 year, 9 months ago by M. Saqib.
- AuthorPosts
Viewing 0 reply threads
- The forum ‘C# Programming’ is closed to new topics and replies.