1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
|
## Features
CsvJdbc accepts all types of CSV files defined by
[RFC 4180](https://tools.ietf.org/html/rfc4180).
CsvJdbc accepts only SQL SELECT queries from a single table and does
not support INSERT, UPDATE, DELETE or CREATE statements.
SQL sub-queries are permitted but
joins between tables in SQL SELECT queries are not yet supported.
SQL SELECT queries must be of the following format.
SELECT [DISTINCT] [table-alias.]column [[AS] alias], ...
FROM table [[AS] table-alias]
WHERE [NOT] condition [AND | OR condition] ...
GROUP BY column ... [HAVING condition ...]
ORDER BY column [ASC | DESC] ...
LIMIT n [OFFSET n]
Each column is either a named column,
`*`,
a constant value,
`NULL`,
`CURRENT_DATE`,
`CURRENT_TIME`,
a sub-query,
or an expression including functions, aggregate functions,
operations `+`, `-`,
`/`, `*`, `%`, `||`,
conditional `CASE` expressions
and parentheses.
Supported comparisons in the optional WHERE clause are
`<`,
`>`,
`<=`,
`>=`,
`=`,
`!=`,
`<>`,
`NOT`,
`BETWEEN`,
`LIKE`,
`IS NULL`,
`IN`,
`EXISTS`.
Use double quotes around table names or column names containing spaces
or other special characters.
Function |Description
----------- |-------------------
ABS(N) |Returns absolute value of N
COALESCE(N1, N2, ...)|Returns first expression that is not NULL
DAYOFMONTH(D) |Extracts day of month from date or timestamp D (first day of month is 1)
HOUROFDAY(T) |Extracts hour of day from time or timestamp T
LENGTH(S) |Returns length of string
LOWER(S) |Converts string to lower case
LTRIM(S [, T]) |Removes leading characters from S that occur in T
MINUTE(T) |Extracts minute of hour from time or timestamp T
MONTH(D) |Extracts month from date or timestamp D (first month is 1)
NULLIF(X, Y) |Returns NULL if X and Y are equal, otherwise X
ROUND(N) |Rounds N to nearest whole number
RTRIM(S, [, T]) |Removes trailing characters from S that occur in T
SECOND(T) |Extracts seconds value from time or timestamp T
SUBSTRING(S, N [, L])|Extracts substring from S starting at index N (counting from 1) with length L
TRIM(S, [, T]) |Removes leading and trailing characters from S that occur in T
UPPER(S) |Converts string to lower case
YEAR(D) |Extracts year from date or timestamp D
Additional functions are defined from java methods using the
`function.NAME` driver property.
Aggregate Function|Description
------------------|-----------
AVG(N) |Average of all values
COUNT(N) |Count of all values
MAX(N) |Maximum value
MIN(N) |Minimum value
STRING_AGG(S, D) |All values of S concatenated with delimiter D
SUM(N) |Sum of all values
For queries containing `ORDER BY`, all records are read into memory and sorted.
For queries containing `GROUP BY` plus an aggregate function, all records are
read into memory and grouped. For queries that produce a scrollable result set,
all records up to the furthest accessed record are held into memory. For other
queries, CsvJdbc holds only one record at a time in memory.
## Dependencies
CsvJdbc requires Java version 8, or later. For reading DBF files,
[DANS DBF Library](http://dans-dbf-lib.sourceforge.net/)
must be downloaded and included in the CLASSPATH.
## Advanced Usage
Like other databases, creating a scrollable statement enables scrolling
forwards and backwards through result sets. This is demonstrated in the
following example.
```java
import java.sql.*;
public class DemoDriver2
{
public static void main(String[] args) throws Exception
{
Class.forName("org.relique.jdbc.csv.CsvDriver");
try (Connection conn = DriverManager.getConnection("jdbc:relique:csv:" + args[0]);
// create a scrollable Statement so we can move forwards and backwards
// through ResultSets
Statement stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
ResultSet.CONCUR_READ_ONLY);
ResultSet results = stmt.executeQuery("SELECT ID,NAME FROM sample"))
{
// dump out the last record in the result set, then the first record
if (results.last())
{
System.out.println("ID= " + results.getString("ID") +
" NAME= " + results.getString("NAME"));
if (results.first())
{
System.out.println("ID= " + results.getString("ID") +
" NAME= " + results.getString("NAME"));
}
}
}
}
}
```
To read several files (for example, daily log files) as a single table,
set the database connection property `indexedFiles`.
The following example demonstrates how to do this.
```java
import java.sql.*;
import java.util.Properties;
public class DemoDriver3
{
public static void main(String[] args) throws Exception
{
Class.forName("org.relique.jdbc.csv.CsvDriver");
Properties props = new Properties();
props.put("fileExtension", ".txt");
props.put("indexedFiles", "true");
// We want to read test-001-20081112.txt, test-002-20081113.txt and many
// other files matching this pattern.
props.put("fileTailPattern", "-(\\d+)-(\\d+)");
// Make the two groups in the regular expression available as
// additional table columns.
props.put("fileTailParts", "Seqnr,Logdatum");
try (Connection conn = DriverManager.getConnection("jdbc:relique:csv:" +
args[0], props);
Statement stmt = conn.createStatement();
ResultSet results = stmt.executeQuery("SELECT Datum, Station, " +
"Seqnr, Logdatum FROM test"))
{
ResultSetMetaData meta = results.getMetaData();
while (results.next())
{
for (int i = 0; i < meta.getColumnCount(); i++)
{
System.out.println(meta.getColumnName(i + 1) + " " +
results.getString(i + 1));
}
}
}
}
}
```
Set the database connection property `columnTypes` to enable expressions
containing numeric, time and date data types to be used in SELECT statements
and to enable column values to be fetched using `ResultSet.getInt`,
`getDouble`, `getTime` and other `ResultSet.get` methods.
```java
import java.sql.*;
import java.util.Properties;
public class DemoDriver4
{
public static void main(String[] args) throws Exception
{
Class.forName("org.relique.jdbc.csv.CsvDriver");
Properties props = new Properties();
// Define column names and column data types here.
props.put("suppressHeaders", "true");
props.put("headerline", "ID,ANGLE,MEASUREDATE");
props.put("columnTypes", "Int,Double,Date");
try (Connection conn = DriverManager.getConnection("jdbc:relique:csv:" +
args[0], props);
Statement stmt = conn.createStatement();
ResultSet results = stmt.executeQuery("SELECT Id, Angle * 180 / 3.1415 as A, " +
"MeasureDate FROM t1 where Id > 1001"))
{
while (results.next())
{
// Fetch column values with methods that match the column data types.
System.out.println(results.getInt(1));
System.out.println(results.getDouble(2));
System.out.println(results.getDate(3));
}
}
}
}
```
To read the compressed files inside a ZIP file as database tables, make a
database connection to the ZIP file using the JDBC connection string format
`jdbc:relique:csv:zip:filename.zip`. This is demonstrated in the following
example.
```java
import java.sql.*;
public class DemoDriver5
{
public static void main(String[] args) throws Exception
{
Class.forName("org.relique.jdbc.csv.CsvDriver");
String zipFilename = args[0];
try (Connection conn = DriverManager.getConnection("jdbc:relique:csv:zip:" +
zipFilename);
Statement stmt = conn.createStatement();
// Read from file mytable.csv inside the ZIP file
ResultSet results = stmt.executeQuery("SELECT * FROM mytable"))
{
while (results.next())
{
System.out.println(results.getString("COUNTRY"));
}
}
}
}
```
To read data that is either held inside the Java application (for example, in a
JAR file) or accessed remotely (for example, using HTTP requests), create a
Java class that implements the interface `org.relique.io.TableReader` and give
this class name in the connection URL. CsvJdbc then creates an instance of this
class and calls the `getReader` method to obtain a `java.io.Reader` for each
database table being read. This is demonstrated in the following two Java
classes.
```java
import java.io.*;
import java.net.*;
import java.sql.*;
import java.util.*;
import org.relique.io.TableReader;
public class MyHTTPReader implements TableReader
{
public Reader getReader(Statement statement, String tableName) throws SQLException
{
try
{
URL url = new URL("http://csvjdbc.sourceforge.net/" + tableName + ".csv");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
InputStreamReader reader = new InputStreamReader(connection.getInputStream());
return reader;
}
catch (Exception e)
{
throw new SQLException(e.getMessage());
}
}
public List getTableNames(Connection connection)
{
// Return list of available table names
Vector v = new Vector();
v.add("sample");
return v;
}
}
import java.sql.*;
import org.relique.jdbc.csv.CsvDriver;
public class DemoDriver6
{
public static void main(String []args) throws Exception
{
Class.forName("org.relique.jdbc.csv.CsvDriver");
String sql = "SELECT * FROM sample";
// Give name of Java class that provides database tables.
try (Connection conn = DriverManager.getConnection("jdbc:relique:csv:class:" +
MyHTTPReader.class.getName());
Statement stmt = conn.createStatement();
ResultSet results = stmt.executeQuery(sql))
{
CsvDriver.writeToCsv(results, System.out, true);
}
}
}
```
## Driver Properties
The driver also supports a number of parameters that change the
default behaviour of the driver.
These properties are:
### charset
+ type: String
+ default: Java default
+ Defines the character set name of the files being read, such as `UTF-16`.
See the Java
[Charset](https://docs.oracle.com/javase/7/docs/api/java/nio/charset/Charset.html)
documentation for a list of available character set names.
### columnTypes
+ type: String
+ default: all Strings
+ A comma-separated list defining SQL data types for columns in tables. When
column values are fetched using `getObject` (as opposed to `getString`), the
driver will parse the value and return a correctly typed object. If fewer data
types are provided than the number of columns in the table, the last data type
is repeated for all remaining columns. If `columnTypes` is set to an empty
string then column types are inferred from the data. When working with multiple
tables with different column types, define properties named `columnTypes.CATS`
and `columnTypes.DOGS` to define different column types for tables `CATS` and
`DOGS`.
### commentChar
+ type: String
+ default: `null`
+ Lines before the header that start with the comment are skipped.
After the header has been read, all lines are interpreted as data.
### cryptoFilterClassName
+ type: Class
+ default: `null`
+ The full class name of a Java class that decrypts the file being read.
The class must implement interface `org.relique.io.CryptoFilter`. The class
`org.relique.io.XORFilter` included in CsvJdbc implements an XOR encryption
filter.
### cryptoFilterParameterTypes
+ type: String
+ default: `String`
+ Comma-separated list of data types to pass to the constructor of the
decryption class set in property `cryptoFilterClassName`.
### cryptoFilterParameters
+ type: String
+ default:
+ Comma-separated list of values to pass to the constructor of the
decryption class set in property `cryptoFilterClassName`.
### defectiveHeaders
+ type: Boolean
+ default: `False`
+ in case a column name is the emtpy string, replace it with COLUMNx,
where x is the ordinal identifying the column.
### fileExtension
+ type: String
+ default: `.csv`
+ Specifies file extension of the CSV files. If the extension `.dbf`
is used then files are read as dBase format database files.
### fileTailParts
+ type: String
+ default: `null`
+ Comma-separated list of column names for the additional columns
generated by regular expression groups in the property `fileTailPattern`.
### fileTailPattern
+ type: String
+ default: `null`
+ Regular expression for matching filenames when property `indexedFiles` is
True. If the regular expression contains groups (surrounded by parentheses)
then the value of each group in matching filenames is added as an extra column
to each line read from that file. For example, when querying table `test`, the
regular expression `-(\d+)-(\d+)` will match files `test-001-20081112.csv` and
`test-002-20081113.csv`. The column values `001` and `20081112` are added to
each line read from the first file and `002` and `20081113` are added to each
line read from the second file.
### fileTailPrepend
+ type: Boolean
+ default: `False`
+ when True, columns generated by regular expression groups in the
`fileTailPattern` property are prepended to the start of each line.
When False, the generated columns are appended after the columns
read for each line.
### fixedWidths
+ type: String
+ default: `null`
+ Defines character position ranges for each column in a fixed width file. When
set, column values are extracted from these ranges in each line instead of
separating the line by delimiters. Each column is a pair of character positions
separated by a minus sign, or a single character for columns with only a single
character. The position of the first character on each line is 1. Character
position ranges are separated by commas. For example, `1,2-9,16-19`.
### function.NAME
+ type: String
+ default: None
+ Defines a java method to use as the SQL function named `NAME` in SQL
statements. The property value is a public static java given as a java package,
class and method name followed by parameter list in parentheses. For example,
property `function.POW` with value `java.lang.Math.pow(double, double)` makes
`POW` available as an SQL function. Methods with variable length argument lists
are defined by appending ... after the last parameter. Each method parameter
must be a numeric type, `String`, or `Object`.
### headerline
+ type: string
+ default: None
+ Used in combination with the `suppressHeaders` property to specify a custom
header line for tables. `headerline` contains a list of column names for tables
separated by the `separator`. When working with multiple tables with different
headers, define properties named `headerline.CATS` and `headerline.DOGS` to
define different header lines for tables `CATS` and `DOGS`.
### ignoreNonParseableLines
+ type: Boolean
+ default: `False`
+ when True, lines that have too few or too many column values
will not cause an exception but will
be ignored. Each ignored line is logged. Call method
`java.sql.DriverManager.setLogWriter` before executing a query to capture a
list of ignored lines.
### indexedFiles
+ type: Boolean
+ default: `False`
+ when True, all files with a filename matching the table name plus the regular
expression given in property `fileTailPattern` are read as if they were a single
file.
### isHeaderFixedWidth
+ type: Boolean
+ default: `True`
+ Used in combination with the `fixedWidths` property when reading fixed
width files to specify whether the header line containing the column names
is also fixed width. If False, column names are separated by the `separator`.
### missingValue
+ type: String
+ default: `null`
+ When not null, lines with too few column values will use this value for
each missing column, instead of throwing an exception.
### quotechar
+ type: Character
+ default: `"`
+ Defines quote character. Column values surrounded with the quote character
are parsed with the quote characters removed. This is useful when values
contain the `separator` or line breaks. No more than one character is allowed.
An empty value disables quoting.
### quoteStyle
+ type: String
+ default: `SQL`
+ Defines how a quote character is interpreted inside a quoted value. When
`SQL`, a pair of quote characters together is interpreted as a single quote
character. When `C`, a backslash followed by a quote character is interpreted
as a single quote character.
### locale
+ type: String
+ default: Java default
+ Defines locale to use when parsing timestamps. This is important when parsing
words such as `December` which vary depending on the locale. Call method
`java.util.Locale.toString()` to convert a locale to a string.
### separator
+ type: String
+ default: `","`
+ Defines column separator. A separator longer than one character is permitted.
### skipLeadingLines
+ type: Integer
+ default: `0`
+ after opening a file, skip this many lines before starting to interpret
the contents.
### skipLeadingDataLines
+ type: Integer
+ default: `0`
+ after reading the header from a file, skip this many lines before starting
to interpret lines as records.
### suppressHeaders
+ type: boolean
+ default: `False`
+ Used to specify that the file does not contain a column header with column
names. If `True` and `headerline` is not set, then columns are named
sequentially `COLUMN1`, `COLUMN2`, ... If `False`, the column header is read
from the first line of the file.
### timestampFormat, timeFormat, dateFormat
+ type: String
+ default: `yyyy-MM-dd HH:mm:ss`, `HH:mm:ss`, `yyyy-MM-dd`
+ Defines the format from which columns of type Timestamp, Time and Date are parsed. See the Java
[SimpleDateFormat](https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html)
documentation for date and timestamp patterns,
or
[DateTimeFormatter](https://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html)
when property `useDateTimeFormatter` is set to `true`.
### timeZoneName
+ type: String
+ default: `UTC`
+ The time zone of Timestamp columns. To use the time zone of the computer,
set this to the value returned by the method
`java.util.TimeZone.getDefault().getID()`.
### trimHeaders
+ type: Boolean
+ default: `True`
+ If True, leading and trailing whitespace is trimmed from each column
name in the header line. Column names inside quotes are not trimmed.
### trimValues
+ type: Boolean
+ default: `False`
+ If True, leading and trailing whitespace is trimmed from each column
value in the file. Column values inside quotes are not trimmed.
### useDateTimeFormatter
+ type: Boolean
+ default: `False`
+ If True, Java class
[DateTimeFormatter](https://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html)
(that was new in Java 8)
is used to parse and format timestamps, times and dates instead
of the older class
[SimpleDateFormat](https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html).
The following example code shows how some of these properties are used.
```java
...
Properties props = new java.util.Properties();
props.put("separator", "|"); // separator is a bar
props.put("suppressHeaders", "true"); // first line contains data
props.put("fileExtension", ".txt"); // file extension is .txt
props.put("timeZoneName", "America/Los_Angeles"); // timestamps are Los Angeles time
Connection conn1 = Drivermanager.getConnection("jdbc:relique:csv:" + args[0], props);
...
// Connections using a URL string containing both directory and
// properties are also accepted (class java.net.URLEncoder encodes
// property values containing special characters).
Connection conn2 = DriverManager.getConnection("jdbc:relique:csv:" + args[0] + "?" +
"separator=" + URLEncoder.encode("|", "UTF-8") + "&" +
"quotechar=" + URLEncoder.encode("'", "UTF-8") + "&" +
"fileExtension=.txt" + "&" +
"suppressHeaders=true");
```
|