I'm getting the following error message when I try to call a DB2 stored procedure from my C# Code:
ERROR [42601] [IBM][CLI Driver][DB2/NT64] SQL0104N An unexpected token "END-OF-STATEMENT" was found following "get_profile_internet". Expected tokens may include: "JOIN ". SQLSTATE=42601
What am I doing wrong?
Here's the DB2 - Stored procedure code
create procedure db2admin.pr_get_profile_internet (
IN p_profile_internet_id INT
)
BEGIN
DELCARE c_profile_internet CURSOR WITH RETURN TO CLIENT FOR
SELECT *
FROM profile_internet
WHERE profile_internet_id = p_profile_internet_id;
OPEN c_profile_internet;
END;
Here's my C# Code
public CDataResult<DataSet> GetProfileInternet() {
string v_connection_string = General.GetDBConnection();
CDataResult<DataSet> v_result = new CDataResult<DataSet>();
OdbcConnection v_connection = new OdbcConnection(v_connection_string);
try {
// Open Connection
v_connection.Open();
OdbcCommand cmd = new OdbcCommand("db2admin.pr_get_profile_internet", v_connection);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add("p_profile_internet_id", OdbcType.Int);
cmd.Parameters["p_profile_internet_id"].Value = this.ProfileInternetId;
OdbcDataAdapter da = new OdbcDataAdapter(cmd);
DataSet ds = new DataSet("GetProfileInternet");
da.Fill(ds);
if (ds != null && ds.Tables[0].Rows.Count > 0) {
v_result.ErrorOccured = false;
v_result.ErrorMessageEn = "";
} else {
v_result.ErrorOccured = true;
v_result.ErrorMessageEn = "Error! User code is not valid.";
}
} catch (Exception ex) {
v_result.ErrorOccured = true;
v_result.ErrorMessageEn = "DB error: CProfileInternet->GetProfileInternet()";
v_result.ErrorException = ex.Message + '\n' + ex.InnerException;
} finally {
if (v_connection != null) {
v_connection.Close();
}
}
return v_result;
}

