java/sql-dk/src/info/globalcode/sql/dk/Parameter.java
branchv_0
changeset 1 f32dac78d13a
child 4 f5c3350f3d78
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/java/sql-dk/src/info/globalcode/sql/dk/Parameter.java	Sun Dec 15 19:20:50 2013 +0100
@@ -0,0 +1,33 @@
+package info.globalcode.sql.dk;
+
+/**
+ *
+ * @author Ing. František Kučera (frantovo.cz)
+ */
+public class Parameter {
+
+	private Object value;
+	private int type;
+
+	public Object getValue() {
+		return value;
+	}
+
+	public void setValue(Object value) {
+		this.value = value;
+	}
+
+	/**
+	 * @see java.sql.Types
+	 */
+	public int getType() {
+		return type;
+	}
+
+	/**
+	 * @see java.sql.Types
+	 */
+	public void setType(int type) {
+		this.type = type;
+	}
+}