Package org.openengsb.core.edbi.jdbc.sql

Examples of org.openengsb.core.edbi.jdbc.sql.TableElementCompiler


            throw new TableExistsException("Table for index " + index.getName() + " exists");
        }

        // TODO: sql independence
        String sql =
            String.format("CREATE TABLE `%s` ( %s );", table.getName(), new TableElementCompiler(table).toSql());

        LOG.info("Creating table for Index {}. SQL is: {}", index.getName(), sql);

        jdbc().execute(sql);
View Full Code Here

TOP

Related Classes of org.openengsb.core.edbi.jdbc.sql.TableElementCompiler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.