Tweak QueryMapper

This commit is contained in:
Travis Burtrum 2017-06-30 23:37:36 -04:00
parent f30a09ee3f
commit 09c114e106
1 changed files with 8 additions and 6 deletions

View File

@ -1,5 +1,6 @@
package com.moparisthebest.jdbc; package com.moparisthebest.jdbc;
import com.moparisthebest.jdbc.codegen.JdbcMapper;
import com.moparisthebest.jdbc.util.ResultSetIterable; import com.moparisthebest.jdbc.util.ResultSetIterable;
import javax.naming.Context; import javax.naming.Context;
@ -16,9 +17,10 @@ import java.util.stream.Stream;
import static com.moparisthebest.jdbc.TryClose.tryClose; import static com.moparisthebest.jdbc.TryClose.tryClose;
public class QueryMapper implements Closeable { public class QueryMapper implements JdbcMapper {
public static final Object noBind = new Object(); public static final Object noBind = new Object();
public static final ResultSetMapper defaultRsm = new ResultSetMapper();
static { static {
try{ try{
@ -36,7 +38,7 @@ public class QueryMapper implements Closeable {
protected final Context context; protected final Context context;
protected QueryMapper(Connection conn, String jndiName, ResultSetMapper cm) { protected QueryMapper(Connection conn, String jndiName, ResultSetMapper cm) {
this.cm = cm == null ? new ResultSetMapper() : cm; this.cm = cm == null ? defaultRsm : cm;
Context context = null; Context context = null;
if (conn == null && jndiName != null) if (conn == null && jndiName != null)
try { try {
@ -160,8 +162,8 @@ public class QueryMapper implements Closeable {
ps.setClob(index, (Reader) o); ps.setClob(index, (Reader) o);
else if (o instanceof ClobString) else if (o instanceof ClobString)
ps.setClob(index, ((ClobString) o).s == null ? null : new StringReader(((ClobString) o).s)); ps.setClob(index, ((ClobString) o).s == null ? null : new StringReader(((ClobString) o).s));
else if (o instanceof Clob) else if (o instanceof java.sql.Clob)
ps.setClob(index, (Clob) o); ps.setClob(index, (java.sql.Clob) o);
// BLOB support // BLOB support
else if (o instanceof byte[]) else if (o instanceof byte[])
ps.setBlob(index, new ByteArrayInputStream((byte[]) o)); ps.setBlob(index, new ByteArrayInputStream((byte[]) o));
@ -179,8 +181,8 @@ public class QueryMapper implements Closeable {
} catch (UnsupportedEncodingException e) { } catch (UnsupportedEncodingException e) {
throw new SQLException("String to Blob UnsupportedEncodingException", e); throw new SQLException("String to Blob UnsupportedEncodingException", e);
} }
else if (o instanceof Blob) else if (o instanceof java.sql.Blob)
ps.setBlob(index, (Blob) o); ps.setBlob(index, (java.sql.Blob) o);
else if (o instanceof ArrayInList.ArrayListObject) else if (o instanceof ArrayInList.ArrayListObject)
ps.setArray(index, ((ArrayInList.ArrayListObject) o).getArray()); ps.setArray(index, ((ArrayInList.ArrayListObject) o).getArray());
else else