You're having that issue because the field you performing the WHERE clause on is the foreign key from tblBanks, so the actual value is an number, not string. JOIN with the tblBanks table and apply the WHERE clause to the BankName field and the parameter query with like will work. See the attached SQL.
HTH,
MV