You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DataSetdataSet=OSAESql.RunSQL("SELECT state_label, state_name FROM osae_v_object_state where object_name = '"+cboObject.SelectedValue+"' order by state_label");
438
+
DataSetdataSet=OSAESql.RunSQL("SELECT state_label, state_name FROM osae_v_object_state where object_name = '"+cboObject.SelectedValue.ToString().Replace("'","''")+"' order by state_label");
DataSetdataSet2=OSAESql.RunSQL("SELECT method_label, method_name FROM osae_v_object_method where object_name = '"+cboObject.SelectedValue+"' order by method_label");
440
+
DataSetdataSet2=OSAESql.RunSQL("SELECT method_label, method_name FROM osae_v_object_method where object_name = '"+cboObject.SelectedValue.ToString().Replace("'","''")+"' order by method_label");
DataSetdataSet=OSAESql.RunSQL("SELECT state_label, state_name FROM osae_v_object_state where object_name = '"+cboObject.SelectedValue+"' AND state_name !='"+cboState1.SelectedValue+"' order by state_label");
765
+
DataSetdataSet=OSAESql.RunSQL("SELECT state_label, state_name FROM osae_v_object_state where object_name = '"+cboObject.SelectedValue.ToString().Replace("'","''")+"' AND state_name !='"+cboState1.SelectedValue+"' order by state_label");
0 commit comments