Examples of changeTableEngine()


Examples of mydatagenerator.core.database.operations.DatabaseTableUtils.changeTableEngine()

                           logOutputTextArea.append("Total tables to clean: "+tableToClean+"\n");
                          
                           // change the engine type of the ARCHIVE tables
                           for(int i=0;i<archiveTables.size();i++)
                           {                           
                             databaseTableUtils.changeTableEngine(archiveTables.get(i),"InnoDB");
                            
                             if(Log4jManager.IS_LOGGING_CONFIGURED)
                         logger.debug("Changed the engine type of table "+archiveTables.get(i)+" to InnoDB");
                           }
                          
View Full Code Here

Examples of mydatagenerator.core.database.operations.DatabaseTableUtils.changeTableEngine()

                     {                     
                       logOutputTextArea.append("Restoring the engine type to ARCHIVE...\n");                      
                     
                         for(int i=0;i<archiveTables.size();i++)
                         {                           
                          databaseTableUtils.changeTableEngine(archiveTables.get(i),"ARCHIVE");
                          
                          if(Log4jManager.IS_LOGGING_CONFIGURED)
                        logger.debug("Restored the engine type to ARCHIVE for table "+archiveTables.get(i));
                         }
                     }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.