]> WPIA git - gigi.git/blobdiff - util/org/cacert/gigi/util/DatabaseManager.java
[EMPTY] Formatting with configured formatter.
[gigi.git] / util / org / cacert / gigi / util / DatabaseManager.java
index 547922e6130cb78f02c2d8b7e1fad29e361791d1..471083953b8d2b2f1362f8d440eca5016c7789de 100644 (file)
@@ -14,27 +14,24 @@ public class DatabaseManager {
        public static String readFile(File f) throws IOException {
                return new String(Files.readAllBytes(f.toPath()));
        }
-       public static void main(String[] args) throws SQLException,
-                       ClassNotFoundException, IOException {
+
+       public static void main(String[] args) throws SQLException, ClassNotFoundException, IOException {
                if (args.length == 0) {
                        Properties p = new Properties();
                        p.load(new FileReader("config/gigi.properties"));
-                       args = new String[]{p.getProperty("sql.driver"),
-                                       p.getProperty("sql.url"), p.getProperty("sql.user"),
-                                       p.getProperty("sql.password")};
+                       args = new String[] { p.getProperty("sql.driver"), p.getProperty("sql.url"), p.getProperty("sql.user"),
+                                       p.getProperty("sql.password") };
                }
                if (args.length < 4) {
-                       System.err
-                                       .println("Usage: com.mysql.jdbc.Driver jdbc:mysql://localhost/cacert user password");
+                       System.err.println("Usage: com.mysql.jdbc.Driver jdbc:mysql://localhost/cacert user password");
                        return;
                }
                run(args);
        }
-       public static void run(String[] args) throws ClassNotFoundException,
-                       SQLException, IOException {
+
+       public static void run(String[] args) throws ClassNotFoundException, SQLException, IOException {
                Class.forName(args[0]);
-               Connection conn = DriverManager
-                               .getConnection(args[1], args[2], args[3]);
+               Connection conn = DriverManager.getConnection(args[1], args[2], args[3]);
                Statement stmt = conn.createStatement();
                addFile(stmt, new File("doc/tableStructure.sql"));
                File localData = new File("doc/sampleData.sql");
@@ -44,8 +41,8 @@ public class DatabaseManager {
                stmt.executeBatch();
                stmt.close();
        }
-       private static void addFile(Statement stmt, File f) throws IOException,
-                       SQLException {
+
+       private static void addFile(Statement stmt, File f) throws IOException, SQLException {
                String sql = readFile(f);
                String[] stmts = sql.split(";");
                for (String string : stmts) {