/*
 * ConnectionManager.java
 *
 * Created on February 9, 2003, 6:14 PM
 */

package Demos.DatabaseDefinitions;

import ca.mb.armchair.DBAppBuilder.Dialogs.*;

/**
 * Connection manager.
 *
 * @author  Dave Voorhis
 */
public class ConnectionManager {
    
    public static void run() {
        new DialogDB().show();
    }
    
    public static String getDescription() {
        return "Run this <b>first</b> to create a <u>Default Database Connection</u>.  The default database connection will be used by the demonstration programs.";
    }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        run();
        System.exit(0);
    }
    
}
