Esempio n. 1
0
 public void MakeSQL()
 {
     if (BearbeitenMode == StateClasses.EditStateClass.eBearbeiten.eEdit)
     {
         SQLScript = StaticTreeClass.MakeSQLAlterFunction(FunctionObject, OldFunctionObject, true);
     }
     else
     {
         SQLScript = StaticTreeClass.MakeSQLCreateFunction(FunctionObject, true);
     }
     SQLToUI(SQLScript);
     ShowCaptions();
     hsCreate.Enabled = (txtFuncName.Text.Length > 0);
 }