Package com.asakusafw.bulkloader.common

Examples of com.asakusafw.bulkloader.common.ExportTempTableStatus


                rs = DBConnection.executeQuery(
                        stmt,
                        checkSql,
                        new String[]{ exportTempName });
                if (rs.next()) {
                    ExportTempTableStatus status = ExportTempTableStatus.find(rs.getString("TEMP_TABLE_STATUS"));
                    if (!ExportTempTableStatus.COPY_EXIT.equals(status)) {
                        LOG.info("TG-EXPORTER-07003",
                                exportTempName, status.getStatus());
                        return;
                    }
                }
            } catch (SQLException e) {
                throw BulkLoaderSystemException.createInstanceCauseBySQLException(
View Full Code Here

TOP

Related Classes of com.asakusafw.bulkloader.common.ExportTempTableStatus

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.