org.apache.activemq.util.GenerateJDBCStatements Maven / Gradle / Ivy
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.util;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Locale;
import java.util.regex.Pattern;
import org.apache.activemq.store.jdbc.Statements;
public class GenerateJDBCStatements {
public static String returnStatement(Object statement){
return ((String)statement).replace("<", "<").replace(">", ">");
}
/**
* @param args
*/
public static void main(String[] args) throws Exception{
Statements s=new Statements();
s.setTablePrefix("ACTIVEMQ.");
String[] stats=s.getCreateSchemaStatements();
System.out.println("");
System.out.println("");
System.out.println("");
for(int i=0; i"+stats[i]+"");
}
System.out.println("
");
System.out.println(" ");
Method[] methods=Statements.class.getMethods();
Pattern sPattern= Pattern.compile("get.*Statement$");
Pattern setPattern= Pattern.compile("set.*Statement$");
ArrayList setMethods=new ArrayList();
for(int i=0; i ");
}
}
//for a typo is not needed if removeMessageStatment typo is corrected
Pattern sPattern2= Pattern.compile("get.*Statment$");
for(int i=0; i ");
}
}
//end of generating because of typo
String[] statsDrop=s.getDropSchemaStatements();
System.out.println("");
System.out.println("");
for(int i=0; i"+statsDrop[i]+"");
}
System.out.println("
");
System.out.println(" ");
System.out.println(" ");
}
}