Ejemplo n.º 1
0
 public ServerObjectFilter()
 {
     ServerName = new StringObjectFilterItem {
         PropertyName = "server", PropertyTitle = "s_server"
     };
     DialectName = new DialectObjectFilterItem {
         PropertyName = "dialect", PropertyTitle = "s_dialect"
     };
 }
Ejemplo n.º 2
0
 public TableObjectFilter()
 {
     TableSchema = new StringObjectFilterItem {
         PropertyName = "dbobjschema", PropertyTitle = "s_schema"
     };
     TableName = new StringObjectFilterItem {
         PropertyName = "dbobjname", PropertyTitle = "s_name"
     };
 }
 public StringObjectFilterItemFrame(StringObjectFilterItem item)
 {
     InitializeComponent();
     m_item             = item;
     tbxCondition.Text  = m_item.DefinedVal ?? "";
     chbRegex.Checked   = m_item.IsRegex;
     chbEnabled.Text    = Texts.Get(m_item.PropertyTitle);
     chbEnabled.Checked = m_item.Enabled;
     chbEnabled_CheckedChanged(this, EventArgs.Empty);
 }
Ejemplo n.º 4
0
 public DbObjectObjectFilter()
 {
     DbObjectType = new StringObjectFilterItem {
         PropertyName = "dbobjtype", PropertyTitle = "s_db_object_type"
     };
     DbObjectSchema = new StringObjectFilterItem {
         PropertyName = "dbobjschema", PropertyTitle = "s_schema"
     };
     DbObjectName = new StringObjectFilterItem {
         PropertyName = "dbobjname", PropertyTitle = "s_name"
     };
 }
Ejemplo n.º 5
0
 public DatabaseObjectFilter()
 {
     DatabaseName = new StringObjectFilterItem {
         PropertyName = "database", PropertyTitle = "s_database"
     };
 }
Ejemplo n.º 6
0
 public AppObjectFilter()
 {
     ObjectType = new StringObjectFilterItem {
         PropertyName = "objtype", PropertyTitle = "s_object_type"
     };
 }