Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
real
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Paolo Guagliardo
real
Commits
4af40870
Commit
4af40870
authored
4 months ago
by
Paolo Guagliardo
Browse files
Options
Downloads
Patches
Plain Diff
Populate SQLite tables from CSV
parent
3c4cacb9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/uk/ac/ed/pguaglia/real/db/Database.java
+5
-6
5 additions, 6 deletions
src/main/java/uk/ac/ed/pguaglia/real/db/Database.java
src/main/java/uk/ac/ed/pguaglia/real/runtime/CommandLineApp.java
+8
-3
8 additions, 3 deletions
...n/java/uk/ac/ed/pguaglia/real/runtime/CommandLineApp.java
with
13 additions
and
9 deletions
src/main/java/uk/ac/ed/pguaglia/real/db/Database.java
+
5
−
6
View file @
4af40870
...
@@ -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
(
data
file
);
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
)
+
")"
);
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
src/main/java/uk/ac/ed/pguaglia/real/runtime/CommandLineApp.java
+
8
−
3
View file @
4af40870
...
@@ -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
());
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment