Mercurial > hg > monetdb-java
comparison src/main/java/nl/cwi/monetdb/jdbc/MonetClob.java @ 69:e092fa8d9ab7
Expand import java.*.* statements
author | Martin van Dinther <martin.van.dinther@monetdbsolutions.com> |
---|---|
date | Thu, 08 Dec 2016 14:39:59 +0100 (2016-12-08) |
parents | a5a898f6886c |
children | b9b35ca2eec2 |
comparison
equal
deleted
inserted
replaced
53:6cc63d6cb224 | 69:e092fa8d9ab7 |
---|---|
6 * Copyright 1997 - July 2008 CWI, August 2008 - 2016 MonetDB B.V. | 6 * Copyright 1997 - July 2008 CWI, August 2008 - 2016 MonetDB B.V. |
7 */ | 7 */ |
8 | 8 |
9 package nl.cwi.monetdb.jdbc; | 9 package nl.cwi.monetdb.jdbc; |
10 | 10 |
11 import java.sql.*; | 11 import java.io.InputStream; |
12 import java.io.*; | 12 import java.io.OutputStream; |
13 import java.io.Reader; | |
14 import java.io.Writer; | |
15 import java.sql.Clob; | |
16 import java.sql.SQLException; | |
17 import java.sql.SQLFeatureNotSupportedException; | |
13 | 18 |
14 /** | 19 /** |
15 * The MonetClob class implements the {@link java.sql.Clob} interface. Because | 20 * The MonetClob class implements the {@link java.sql.Clob} interface. Because |
16 * MonetDB/SQL currently has no support for streams, this class is a | 21 * MonetDB/SQL currently has no support for streams, this class is a |
17 * shallow wrapper of a {@link StringBuilder}. It is more or less supplied to | 22 * shallow wrapper of a {@link StringBuilder}. It is more or less supplied to |