\r
Date Dev Ver Change details\r
---------- --- ----- --------------\r
+2008-05-30 DP 1.8.3 Allow comments to be edited on EDB stored procedures.\r
2008-05-29 DP 1.8.3 Fix comments on EDB packages.\r
2008-05-29 DP 1.8.3 Ensure the grant wizard works correctly with EDB stored\r
procedures.\r
if (function)
txtName->Disable();
cbOwner->Disable();
- txtComment->Disable();
cbLanguage->Disable();
chkStrict->Disable();
chkSecureDefiner->Disable();
sql += GetGrant(wxT("X"), wxT("FUNCTION ") + name);
}
- AppendComment(sql, wxT("FUNCTION ") + name, function);
+ if (isProcedure)
+ AppendComment(sql, wxT("PROCEDURE ") + GetName(), function);
+ else
+ AppendComment(sql, wxT("FUNCTION ") + name, function);
return sql;
}