Revision 8054 trunk/libraries/libGDBMS/src/main/java/com/hardcode/gdbms/engine/values/ComplexValue.java

View differences:

ComplexValue.java
1 1
package com.hardcode.gdbms.engine.values;
2 2

  
3
import java.sql.Types;
3 4
import java.util.Collection;
4 5
import java.util.LinkedHashMap;
5 6
import java.util.Map;
......
105 106
	public String toString() {	
106 107
		return this.getValue();		
107 108
	}
109
	
110
	public int getSQLType() {		 
111
		//return super.getSQLType(); --> Types.LONGVARCHAR;
112
		return Types.STRUCT;
113
	}
108 114

  
109 115
}

Also available in: Unified diff