org.springframework.jdbc.core.support.AbstractSqlTypeValue Java Examples

The following examples show how to use org.springframework.jdbc.core.support.AbstractSqlTypeValue. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: StoredProcedureTests.java    From spring-analysis-note with MIT License 5 votes vote down vote up
public Map<String, Object> executeTest(final int[] inValue) {
	Map<String, AbstractSqlTypeValue> in = new HashMap<>();
	in.put("in", new AbstractSqlTypeValue() {
		@Override
		public Object createTypeValue(Connection con, int type, String typeName) {
			// assertEquals(Connection.class, con.getClass());
			// assertEquals(Types.ARRAY, type);
			// assertEquals("NUMBER", typeName);
			return inValue;
		}
	});
	return execute(in);
}
 
Example #2
Source File: StoredProcedureTests.java    From java-technology-stack with MIT License 5 votes vote down vote up
public Map<String, Object> executeTest(final int[] inValue) {
	Map<String, AbstractSqlTypeValue> in = new HashMap<>();
	in.put("in", new AbstractSqlTypeValue() {
		@Override
		public Object createTypeValue(Connection con, int type, String typeName) {
			// assertEquals(Connection.class, con.getClass());
			// assertEquals(Types.ARRAY, type);
			// assertEquals("NUMBER", typeName);
			return inValue;
		}
	});
	return execute(in);
}
 
Example #3
Source File: StoredProcedureTests.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
public Map<String, Object> executeTest(final int[] inValue) {
	Map<String, AbstractSqlTypeValue> in = new HashMap<String, AbstractSqlTypeValue>();
	in.put("in", new AbstractSqlTypeValue() {
		@Override
		public Object createTypeValue(Connection con, int type, String typeName) {
			// assertEquals(Connection.class, con.getClass());
			// assertEquals(Types.ARRAY, type);
			// assertEquals("NUMBER", typeName);
			return inValue;
		}
	});
	return execute(in);
}
 
Example #4
Source File: StoredProcedureTests.java    From effectivejava with Apache License 2.0 5 votes vote down vote up
public Map<String, Object> executeTest(final int[] inValue) {
	Map<String, AbstractSqlTypeValue> in = new HashMap<String, AbstractSqlTypeValue>();
	in.put("in", new AbstractSqlTypeValue() {
		@Override
		public Object createTypeValue(Connection con, int type, String typeName) {
			// assertEquals(Connection.class, con.getClass());
			// assertEquals(Types.ARRAY, type);
			// assertEquals("NUMBER", typeName);
			return inValue;
		}
	});
	return execute(in);
}