Skip to content
Snippets Groups Projects
Commit 4af40870 authored by Paolo Guagliardo's avatar Paolo Guagliardo
Browse files

Populate SQLite tables from CSV

parent 3c4cacb9
No related branches found
No related tags found
No related merge requests found
...@@ -59,20 +59,19 @@ public class Database { ...@@ -59,20 +59,19 @@ public class Database {
String create = String.format("CREATE TABLE %s (%s)", name, String.join(",", attributes)); String create = String.format("CREATE TABLE %s (%s)", name, String.join(",", attributes));
var stmt = conn.createStatement(); var stmt = conn.createStatement();
stmt.execute(create); stmt.execute(create);
Reader in = new FileReader(datafile); Reader in = new FileReader(data);
CSVParser csv = CSVFormat.RFC4180.parse(in); CSVParser csv = CSVFormat.RFC4180.parse(in);
String insert = "INSERT INTO " + name + "VALUES "; String insert = "INSERT INTO " + name + " VALUES ";
String values = "";
for (CSVRecord r : csv.getRecords()) { for (CSVRecord r : csv.getRecords()) {
int n = r.size(); int n = r.size();
if (attributes.size() != n) { if (attributes.size() != n) {
throw new DatabaseException("Record size does not match"); throw new DatabaseException("Record size does not match");
} }
String[] rec = new String[n]; var rec = new ArrayList<String>();
for (int i=0; i < n; i++) { for (int i=0; i < n; i++) {
rec[i] = r.get(i); rec.add(r.get(i));
} }
records.add(rec); stmt.execute(insert + "(" + String.join(",", rec) + ")");
} }
} }
......
...@@ -256,6 +256,10 @@ public final class CommandLineApp { ...@@ -256,6 +256,10 @@ public final class CommandLineApp {
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace(); e.printStackTrace();
System.exit(-1); System.exit(-1);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.exit(-1);
} }
LineReader lineReader = null; LineReader lineReader = null;
...@@ -383,7 +387,7 @@ public final class CommandLineApp { ...@@ -383,7 +387,7 @@ public final class CommandLineApp {
save(db, line, false); save(db, line, false);
continue mainLoop; continue mainLoop;
case ADD: case ADD:
addTable(line, db.schema()); addTable(line, db);
continue mainLoop; continue mainLoop;
} }
continue mainLoop; continue mainLoop;
...@@ -507,7 +511,7 @@ public final class CommandLineApp { ...@@ -507,7 +511,7 @@ public final class CommandLineApp {
return false; return false;
} }
private static void addTable(String line, Schema sch) { private static void addTable(String line, Database db) {
Pattern p = Pattern.compile("\\w+\\(\\w+(,\\w+)*\\):.+"); Pattern p = Pattern.compile("\\w+\\(\\w+(,\\w+)*\\):.+");
Matcher m = p.matcher(line.replaceAll("\\s", "")); Matcher m = p.matcher(line.replaceAll("\\s", ""));
if (m.matches() == false) { if (m.matches() == false) {
...@@ -526,7 +530,8 @@ public final class CommandLineApp { ...@@ -526,7 +530,8 @@ public final class CommandLineApp {
attributes.add(attr.strip()); attributes.add(attr.strip());
} }
try { try {
sch.addTable(tableName, attributes, new File(filename)); db.schema().addTable(tableName, attributes, new File(filename));
db.addTable(tableName, attributes, new File(filename));
} catch (Exception e) { } catch (Exception e) {
System.err.println("ERROR: " + e.getMessage()); System.err.println("ERROR: " + e.getMessage());
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment