You pass in two parameters but you don't use them in the SQL statement. You then use a parameter (@333) that does not exist. Maybe somthing like this would work:
SELECT BName from Borrower WHERE TaxID = @TaxID
You can drop the parameter @BName as it is not being used. To get the BName back into your application you can use ExecuteScalar().
"On two occasions, I have been asked [by members of Parliament], 'Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?' I am not able to rightly apprehend the kind of confusion of ideas that could provoke such a question." --Charles Babbage (1791-1871) My: Website | Blog