It looks as though the problem lies in my sql query. I'm not sure how it went wrong, since I've been using it successfully for a week. Reconfiguring the query has not helped, either. My query is as follows:
SELECT Address, Customer_ID, First_Name, Last_Name, Phone_No FROM Customer
WHERE (Last_Name LIKE @Last_Name) AND (First_Name LIKE @First_Name) AND (Phone_No LIKE @Phone_No)
called by the code I posted previously:
this.finder.customerTableAdapter.FillByFirstLastPhoneNo(this.finder.edsDBDataSet.Customer, txtLastName.Text, txtFirstName.Text, txtPhone.Text);
Thank you for trying to help thus far. I'll keep working on this; maybe someone will have some insight on what's going wrong. :wtf: