Exemple #1
0
 protected virtual CodeConditionStatement BuildConditionStatement(project proj, conditional cond)
 {
     return new CodeConditionStatement(
         BuildConditionalExpression(cond.when, ItemsChoiceType.all),
         BuildActionStatements(cond.then));
 }
Exemple #2
0
 public List<string> Validate(project proj, ConnectionInfo connectionInfo, bool strict)
 {
     throw new NotImplementedException();
 }
Exemple #3
0
 public void Update(project proj, ConnectionInfo connectionInfo, bool strict)
 {
     throw new NotImplementedException();
 }
Exemple #4
0
 public void Uninstall(project proj, ConnectionInfo connectionInfo)
 {
     throw new NotImplementedException();
 }
Exemple #5
0
 public List<string> GetAppliedTables(project proj, string conditionalName, ConnectionInfo connectionInfo)
 {
     throw new NotImplementedException();
 }
Exemple #6
0
 public Optimizer(project proj)
 {
     _proj = proj;
 }