Hello i am making my project i am stuck at searching two strings in database
for example my table [hotel] contains columns
[Date] [Room Size] [Meal] [Car]
i want to search for date + room size too.
my code checks only [Date] but not [Room Size]
and i want that if some one puts "12 Dec" (as search string) and in second textbox "4"
first it checks date and then availability for room size and return the room size value.
hope everyone understand my problem.
string date = textBox1.Text;
string room = textbox1.text
loaddata = new OleDbConnection("provider=Microsoft.Jet.OLEDB.4.0;data source=Hotel.mdb");
data = new OleDbDataAdapter("Select * from [hotel] where (Date='" + PNR + "')", loaddata);
so far my date code works