I have this query
string query = "SELECT * from IMALSO3.V_BN_IVR_ACCT_BAL_MNO WHERE PHONENO Like '%':mobileNumber";
using (OracleCommand cmd = new OracleCommand(query, conn))
{
cmd.Parameters.Add("mobileNumber", phone8Digits);
but it seems that i am binding wrong,
what is the correct way plase?
thanks