示例#1
0
 public SQLStatementWriter(IJMXTypeMapping typeMapping, bool schemaSupport)
 {
     _typeMapping   = typeMapping;
     _schemaSupport = schemaSupport;
 }
示例#2
0
 public SQLStatementWriter(IJMXTypeMapping typeMapping, JMXSchema schema, bool schemaSupport = true)
 {
     _typeMapping   = typeMapping;
     _schema        = schema;
     _schemaSupport = schemaSupport;
 }
示例#3
0
 public SQLStatementWriter(IJMXTypeMapping typeMapping)
 {
     _typeMapping   = typeMapping;
     _schemaSupport = true;
 }