I am facing a problem with stored procedure in case of "OdbcConnection ". The code is given below:-
Code:
OdbcConnection conn = new OdbcConnection(connstring); conn.Open(); OdbcCommand cmd = new OdbcCommand("sp_comboIDChange", conn); cmd.CommandType = CommandType.StoredProcedure; OdbcParameter parameter1 = new OdbcParameter();