Ejemplo n.º 1
0
 public ConvertToMYSQL(ReadClass readClass)
 {
     this.readClass = readClass;
     this.LowCase   = true;
     this.Engine    = "InnoDB";
     this.Collate   = "utf8_general_ci";
 }
Ejemplo n.º 2
0
 public ConvertToMYSQL(string classPath)
 {
     this.readClass = new ReadClass(classPath);
     this.LowCase   = true;
     this.Engine    = "InnoDB";
     this.Collate   = "utf8_general_ci";
 }