summaryrefslogtreecommitdiff
path: root/israfil-foundation-testing/src/main/java/net/israfil/foundation/mock/sql/MockResultSet.java
blob: 4de4a6311ff190f94762d6d79da05aad8be582ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
/*
 * Copyright (c) 2003, 2004, 2005, 2006 Israfil Consulting Services Corporation
 * Copyright (c) 2003, 2004, 2005, 2006 Christian Edward Gruber
 * All Rights Reserved
 * 
 * This software is licensed under the Berkeley Standard Distribution license,
 * (BSD license), as defined below:
 * 
 * Redistribution and use in source and binary forms, with or without 
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice, this 
 *    list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright notice, 
 *    this list of conditions and the following disclaimer in the documentation 
 *    and/or other materials provided with the distribution.
 * 3. Neither the name of Israfil Consulting Services nor the names of its contributors 
 *    may be used to endorse or promote products derived from this software without 
 *    specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
 * IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, 
 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
 * OF SUCH DAMAGE.
 * 
 * $Id: MockResultSet.java 517M 2007-07-09 20:00:15Z (local) $
 */
package net.israfil.foundation.mock.sql;

import java.io.InputStream;
import java.io.OutputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.net.URL;
import java.sql.Array;
import java.sql.Blob;
import java.sql.Clob;
import java.sql.Date;
import java.sql.NClob;
import java.sql.Ref;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.RowId;
import java.sql.SQLException;
import java.sql.SQLWarning;
import java.sql.SQLXML;
import java.sql.Statement;
import java.sql.Time;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.List;
import java.util.Map;

import net.israfil.foundation.mock.sql.MockResultSetMetaData.ColSpec;

/**
 * A Mock implementation of ResultSet that takes an array of column
 * names and an array or rows, where rows are arrays of data.  A Mock
 * ResultSet can be used in unit testing where database access needs
 * to be stubbed out.
 * 
 * @author <a href="mailto:cgruber@israfil.net">Christian Edward Gruber </a>
 */
public class MockResultSet implements ResultSet {
	
	public MockResultSetMetaData metadata;
    
    protected List<Row> data;
    public List<Row> getData() { return data; } 
    int cursorPosition = 0;
    boolean insertRow = false;
    private final static int BEFOREFIRST = 0;
    private final int AFTERLAST;
    protected int concurrency = CONCUR_READ_ONLY;
	protected int fetchDirection = FETCH_UNKNOWN;
	protected int fetchSize = 0;
	protected Statement statement = null;
	protected boolean wasNull = false;
	boolean open = false;

    private MockResultSet(int size) {
        AFTERLAST = size+1;
    }
    
    /**
     *  The main constructor, which takes an array of strings representing
     *  the columns of the supposed DataReader, and an array of string arrays
     *  representing the row data.  With this, one can simulate a call to the
     *  database.
     *
     * @param columns the columns to be simulated
     * @param rows the rows to be simulated
     * 
     */
    public MockResultSet(String[] columns, Object[][] rows) {
    	this((rows==null)?0:rows.length);
        metadata = new MockResultSetMetaData(columns);
        primeRows(rows);
    }
    
    /**
     *  The main constructor, which takes an array of strings representing
     *  the columns of the supposed DataReader, and an array of string arrays
     *  representing the row data.  With this, one can simulate a call to the
     *  database.
     *
     * @param columns the columns to be simulated
     * @param rows the rows to be simulated
     * 
     */
    public MockResultSet(ColSpec[] columns, Object[][] rows) {
    	this((rows==null)?0:rows.length);
        metadata = new MockResultSetMetaData(columns);
        primeRows(rows);
    }
    
    /**
     * Private method that takes given row data and populates the internal
     * structures with said data.
     * @param rows
     */
    private void primeRows(Object[][] rows) {
        if (rows == null) rows = new String[][]{};
        try {
	        data =  new ArrayList<Row>(metadata.getColumnCount());
	        for (int rowNum = 0; rowNum < rows.length; rowNum++) {
	            data.add(new Row(metadata,new ArrayList<Object>(Arrays.asList(rows[rowNum]))));
	        }
        } catch (SQLException e) {
        	throw new RuntimeException(e);
        }
        cursorPosition = 0;
        open = true;
    }
    
    public void finalize() throws Throwable {
		data = null;
		metadata = null;
    	super.finalize();
    }
    
	/**
	 * Moves the cursor to the given row number in this ResultSet object.
     *
     * If the row number is positive, the cursor moves to the given row number 
     * with respect to the beginning of the result set. The first row is row 1, 
     * the second is row 2, and so on.
     *
     * If the given row number is negative, the cursor moves to an absolute row 
     * position with respect to the end of the result set. For example, calling 
     * the method absolute(-1) positions the cursor on the last row; calling the 
     * method absolute(-2) moves the cursor to the next-to-last row, and so on.
     *
     * An attempt to position the cursor beyond the first/last row in the result 
     * set leaves the cursor before the first row or after the last row.
     *
     * Note: Calling absolute(1) is the same as calling first(). Calling 
     * absolute(-1) is the same as calling last().
     * 
     * @param row - the number of the row to which the cursor should move. A positive number indicates the row number counting from the beginning of the result set; a negative number indicates the row number counting from the end of the result set 
     * @return true if the cursor is on the result set; false otherwise 
	 */
	public boolean absolute(int row) throws SQLException {
		// the number of the row to which the cursor should move. 
		// A positive number indicates the row number counting from 
		// the beginning of the result set; a negative number indicates 
		// the row number counting from the end of the result set.
		if (row > 0) {
			if (BEFOREFIRST + row < AFTERLAST) {
				cursorPosition = BEFOREFIRST + row;
				return true;
			} else {
				cursorPosition = AFTERLAST;
				return false;
			}
		} else if (row < 0) {
			if (AFTERLAST + row > BEFOREFIRST) {
				cursorPosition = AFTERLAST + row;
				return true;
			} else {
				cursorPosition = BEFOREFIRST;
				return false;
			}			
		} else /* offset == 0 */ { 
			// This is essentially beforeFirst();
			cursorPosition = 0;
			return false;
		}
	}

	public void afterLast() throws SQLException {
		absolute(data.size()+1);
	}

	public void beforeFirst() throws SQLException {
		absolute(0);
	}

	public void cancelRowUpdates() throws SQLException {
		throw new UnsupportedOperationException("Not yet implemented.");
	}

	public void clearWarnings() throws SQLException {
		throw new UnsupportedOperationException("Not yet implemented.");
	}

	public void close() throws SQLException {
		open = false;
	}

	public void deleteRow() throws SQLException {
		if (insertRow) throw new SQLException("Cannot delete the insert row.");
		throw new UnsupportedOperationException("Not yet implemented.");
	}

	public int findColumn(String column) throws SQLException {
		throw new UnsupportedOperationException("Not yet implemented.");
	}

	public boolean first() throws SQLException {
		return absolute(1);
	}

	public Object getInternalValue(int rowNumber, int column) { 
		try {
			return processAccessedObject(data.get(rowNumber-1).get(column));
		} catch (SQLException e) { throw new RuntimeException(e); }
	}
	
	public Object getInternalValue(int rowNumber, String column) { 
		try {
			return processAccessedObject(data.get(rowNumber-1).get(column));
		} catch (SQLException e) { throw new RuntimeException(e); }
	}
	
	public Object processAccessedObject(Object o) {
		if (o == null) wasNull = true;
		return o;
	}
	
	public Array getArray(int column) throws SQLException {
		return (Array)getInternalValue(cursorPosition,column);
	}

	public Array getArray(String column) throws SQLException {
		return (Array)getInternalValue(cursorPosition,column);
	}

	public InputStream getAsciiStream(int column) throws SQLException {
		return (InputStream)getInternalValue(cursorPosition,column);
	}

	public InputStream getAsciiStream(String column) throws SQLException {
		return (InputStream)getInternalValue(cursorPosition,column);
	}

	public BigDecimal getBigDecimal(int column, int scale) throws SQLException {
		Object o = getInternalValue(cursorPosition,column);
		if (o == null) return null;
		BigDecimal bd;
		if (o instanceof String) bd = new BigDecimal((String)o);
		else if (o instanceof Number) bd = new BigDecimal(((Number)o).doubleValue());
		else if (o instanceof java.util.Date) bd = new BigDecimal(((java.util.Date)o).getTime());
		else if (o instanceof Calendar) bd = new BigDecimal(((Calendar)o).getTimeInMillis());
		else if (o instanceof char[]) bd = new BigDecimal(((char[])o));
		else if (o instanceof Boolean) return new BigDecimal(((Boolean)o).booleanValue() ? 1 : 0);
		else bd = new BigDecimal(String.valueOf(o));
		bd.setScale(scale);
		return bd;
	}

	public BigDecimal getBigDecimal(int column) throws SQLException {
		Object o = getInternalValue(cursorPosition,column);
		if (o == null) return null;
		BigDecimal bd;
		if (o instanceof String) bd = new BigDecimal((String)o);
		else if (o instanceof Number) bd = new BigDecimal(((Number)o).doubleValue());
		else if (o instanceof java.util.Date) bd = new BigDecimal(((java.util.Date)o).getTime());
		else if (o instanceof Calendar) bd = new BigDecimal(((Calendar)o).getTimeInMillis());
		else if (o instanceof char[]) bd = new BigDecimal(((char[])o));
		else if (o instanceof Boolean) return new BigDecimal(((Boolean)o).booleanValue() ? 1 : 0);
		else bd = new BigDecimal(String.valueOf(o));
		return bd;
	}

	public BigDecimal getBigDecimal(String column, int scale) throws SQLException {
		Object o = getInternalValue(cursorPosition,column);
		if (o == null) return null;
		BigDecimal bd;
		if (o instanceof String) bd = new BigDecimal((String)o);
		else if (o instanceof Number) bd = new BigDecimal(((Number)o).doubleValue());
		else if (o instanceof java.util.Date) bd = new BigDecimal(((java.util.Date)o).getTime());
		else if (o instanceof Calendar) bd = new BigDecimal(((Calendar)o).getTimeInMillis());
		else if (o instanceof char[]) bd = new BigDecimal(((char[])o));
		else if (o instanceof Boolean) return new BigDecimal(((Boolean)o).booleanValue() ? 1 : 0);
		else bd = new BigDecimal(String.valueOf(o));
		bd.setScale(scale);
		return bd;
	}

	public BigDecimal getBigDecimal(String column) throws SQLException {
		Object o = getInternalValue(cursorPosition,column);
		if (o == null) return null;
		BigDecimal bd;
		if (o instanceof String) bd = new BigDecimal((String)o);
		else if (o instanceof Number) bd = new BigDecimal(((Number)o).doubleValue());
		else if (o instanceof java.util.Date) bd = new BigDecimal(((java.util.Date)o).getTime());
		else if (o instanceof Calendar) bd = new BigDecimal(((Calendar)o).getTimeInMillis());
		else if (o instanceof char[]) bd = new BigDecimal(((char[])o));
		else if (o instanceof Boolean) return new BigDecimal(((Boolean)o).booleanValue() ? 1 : 0);
		else bd = new BigDecimal(String.valueOf(o));
		return bd;
	}

	public InputStream getBinaryStream(int column) throws SQLException {
		return (InputStream)getInternalValue(cursorPosition,column);
	}

	public InputStream getBinaryStream(String column) throws SQLException {
		return (InputStream)getInternalValue(cursorPosition,column);
	}

	public Blob getBlob(int column) throws SQLException {
		return new MockBlob(getBytes(column));
	}

	public Blob getBlob(String column) throws SQLException {
		return new MockBlob(getBytes(column));
	}

	public boolean getBoolean(int column) throws SQLException {
		if (getInternalValue(cursorPosition,column) == null) return false; 
		Object o = getInternalValue(cursorPosition,column);
		if (o instanceof Number) return ((Number)o).byteValue() != 0;
		else return Boolean.valueOf(String.valueOf(o));
	}

	public boolean getBoolean(String column) throws SQLException {
		if (getInternalValue(cursorPosition,column) == null) return false; 
		Object o = getInternalValue(cursorPosition,column);
		if (o instanceof Number) return ((Number)o).byteValue() != 0;
		else return Boolean.valueOf(String.valueOf(o));
	}

	public byte getByte(int column) throws SQLException { 
		if (getInternalValue(cursorPosition,column) == null) return 0; 
		Object o = getInternalValue(cursorPosition,column);
		if (o instanceof Number) {
			return ((Number)o).byteValue();
		} else if (o instanceof Boolean) {
			return ((Boolean)o).booleanValue() ? (byte)1 : (byte)0 ;
		} else return Byte.valueOf(String.valueOf(o));
	}

	public byte getByte(String column) throws SQLException {
		if (getInternalValue(cursorPosition,column) == null) return 0; 
		Object o = getInternalValue(cursorPosition,column);
		if (o instanceof Number) {
			return ((Number)o).byteValue();
		} else if (o instanceof Boolean) {
			return ((Boolean)o).booleanValue() ? (byte)1 : (byte)0 ;
		} else return Byte.valueOf(String.valueOf(o));
	}

	public byte[] getBytes(int column) throws SQLException {
		throw new UnsupportedOperationException("Not yet implemented.");
	}

	public byte[] getBytes(String column) throws SQLException {
		throw new UnsupportedOperationException("Not yet implemented.");
	}

	public Reader getCharacterStream(int column) throws SQLException {
		return (Reader)getInternalValue(cursorPosition,column);
	}

	public Reader getCharacterStream(String column) throws SQLException {
		return (Reader)getInternalValue(cursorPosition,column);
	}

	public Clob getClob(int column) throws SQLException {
		return (Clob)getInternalValue(cursorPosition,column);
	}

	public Clob getClob(String column) throws SQLException {
		return (Clob)getInternalValue(cursorPosition,column);
	}

	public int getConcurrency() throws SQLException {
		return concurrency;
	}

	public void setConcurrency(int concurrency) {
		this.concurrency = concurrency;
	}
	public String getCursorName() throws SQLException {
		throw new UnsupportedOperationException("Not yet implemented.");
	}

	public Date getDate(int column, Calendar cal) throws SQLException {
		throw new UnsupportedOperationException("Not yet implemented.");
	}

	public Date getDate(int column) throws SQLException {
		Object o = getInternalValue(cursorPosition,column);
		if (o == null) return null;
		if (o instanceof Date) return (Date)o;
		if (o instanceof java.util.Date) 
			return new Date(((java.util.Date)o).getTime());
		if (o instanceof Calendar) 
			return new Date(((Calendar)o).getTimeInMillis());
		return Date.valueOf(String.valueOf(o));
	}

	public Date getDate(String column, Calendar cal) throws SQLException {
		throw new UnsupportedOperationException("Not yet implemented.");
	}

	public Date getDate(String column) throws SQLException {
		Object o = getInternalValue(cursorPosition,column);
		if (o == null) return null;
		if (o instanceof Date) return (Date)o;
		if (o instanceof java.util.Date) 
			return new Date(((java.util.Date)o).getTime());
		if (o instanceof Calendar) 
			return new Date(((Calendar)o).getTimeInMillis());
		return Date.valueOf(String.valueOf(o));
	}

	public double getDouble(int column) throws SQLException {
		if (getInternalValue(cursorPosition,column) == null) return 0; 
		Object o = getInternalValue(cursorPosition,column);
		if (o instanceof Number) {
			return ((Number)o).doubleValue();
		} else if (o instanceof Boolean) {
			return ((Boolean)o).booleanValue() ? 1 : 0 ;
		} else return Double.valueOf(String.valueOf(o));
	}

	public double getDouble(String column) throws SQLException {
		if (getInternalValue(cursorPosition,column) == null) return 0; 
		Object o = getInternalValue(cursorPosition,column);
		if (o instanceof Number) {
			return ((Number)o).doubleValue();
		} else if (o instanceof Boolean) {
			return ((Boolean)o).booleanValue() ? 1 : 0 ;
		} else return Double.valueOf(String.valueOf(o));
	}

	public int getFetchDirection() throws SQLException {
		throw new UnsupportedOperationException("Not yet implemented.");
	}

	public int getFetchSize() throws SQLException {
		throw new UnsupportedOperationException("Not yet implemented.");
	}

	public float getFloat(int column) throws SQLException {
		if (getInternalValue(cursorPosition,column) == null) return 0; 
		Object o = getInternalValue(cursorPosition,column);
		if (o instanceof Number) {
			return ((Number)o).floatValue();
		} else if (o instanceof Boolean) {
			return ((Boolean)o).booleanValue() ? 1 :0 ;
		} else return Float.valueOf(String.valueOf(o));
	}

	public float getFloat(String column) throws SQLException {
		if (getInternalValue(cursorPosition,column) == null) return 0; 
		Object o = getInternalValue(cursorPosition,column);
		if (o instanceof Number) {
			return ((Number)o).floatValue();
		} else if (o instanceof Boolean) {
			return ((Boolean)o).booleanValue() ? 1 :0 ;
		} else return Float.valueOf(String.valueOf(o));
	}

	public int getInt(int column) throws SQLException {
		if (getInternalValue(cursorPosition,column) == null) return 0; 
		Object o = getInternalValue(cursorPosition,column);
		if (o instanceof Number) {
			return ((Number)o).intValue();
		} else if (o instanceof Boolean) {
			return ((Boolean)o).booleanValue() ? 1 :0 ;
		} else return Integer.valueOf(String.valueOf(o));
	}

	public int getInt(String column) throws SQLException {
		if (getInternalValue(cursorPosition,column) == null) return 0; 
		Object o = getInternalValue(cursorPosition,column);
		if (o instanceof Number) {
			return ((Number)o).intValue();
		} else if (o instanceof Boolean) {
			return ((Boolean)o).booleanValue() ? 1 :0 ;
		} else return Integer.valueOf(String.valueOf(o));
	}

	public long getLong(int column) throws SQLException {
		if (getInternalValue(cursorPosition,column) == null) return 0; 
		Object o = getInternalValue(cursorPosition,column);
		if (o instanceof Number) {
			return ((Number)o).longValue();
		} else if (o instanceof Boolean) {
			return ((Boolean)o).booleanValue() ? 1 :0 ;
		} else return Long.valueOf(String.valueOf(o));
	}

	public long getLong(String column) throws SQLException {
		if (getInternalValue(cursorPosition,column) == null) return 0; 
		Object o = getInternalValue(cursorPosition,column);
		if (o instanceof Number) {
			return ((Number)o).longValue();
		} else if (o instanceof Boolean) {
			return ((Boolean)o).booleanValue() ? 1 :0 ;
		} else return Long.valueOf(String.valueOf(o));
	}

	public ResultSetMetaData getMetaData() throws SQLException {
		return metadata;
	}

	public Object getObject(int column, Map<String, Class<?>> mapping) throws SQLException {
		throw new UnsupportedOperationException("Unimplented feature.");
	}

	public Object getObject(int column) throws SQLException {
		return (Object)getInternalValue(cursorPosition,column);
	}

	public Object getObject(String column, Map<String, Class<?>> mapping) throws SQLException {
		throw new UnsupportedOperationException("Unimplented feature.");
	}

	public Object getObject(String column) throws SQLException {
		return (Object)getInternalValue(cursorPosition,column);
	}

	public Ref getRef(int column) throws SQLException {
		throw new UnsupportedOperationException("Unimplented feature.");
	}

	public Ref getRef(String column) throws SQLException {
		throw new UnsupportedOperationException("Unimplented feature.");
	}

	public int getRow() throws SQLException {
		return (cursorPosition > BEFOREFIRST && cursorPosition < AFTERLAST) ? cursorPosition : 0;
	}

	public short getShort(int column) throws SQLException {
		if (getInternalValue(cursorPosition,column) == null) return 0; 
		Object o = getInternalValue(cursorPosition,column);
		if (o instanceof Number) {
			return ((Number)o).shortValue();
		} else if (o instanceof Boolean) {
			return ((Boolean)o).booleanValue() ? (short)1 : (short)0 ;
		} else return Short.valueOf(String.valueOf(o));
	}

	public short getShort(String column) throws SQLException {
		if (getInternalValue(cursorPosition,column) == null) return 0; 
		Object o = getInternalValue(cursorPosition,column);
		if (o instanceof Number) {
			return ((Number)o).shortValue();
		} else if (o instanceof Boolean) {
			return ((Boolean)o).booleanValue() ? (short)1 : (short)0 ;
		} else return Short.valueOf(String.valueOf(o));
	}

	public Statement getStatement() throws SQLException {
		return null;
	}

	public String getString(int column) throws SQLException {
		Object o = getInternalValue(cursorPosition,column);
		return (o == null) ? null : String.valueOf(o);
	}

	public String getString(String column) throws SQLException {
		Object o = getInternalValue(cursorPosition,column);
		return (o == null) ? null : String.valueOf(o);
	}

	public Time getTime(int column, Calendar cal) throws SQLException {
		return (Time)getInternalValue(cursorPosition,column);
	}

	public Time getTime(int column) throws SQLException {
		Object o = getInternalValue(cursorPosition,column);
		if (o == null) return null;
		if (o instanceof Time) return (Time)o;
		if (o instanceof java.util.Date) 
			return new Time(((java.util.Date)o).getTime());
		if (o instanceof Calendar) 
			return new Time(((Calendar)o).getTimeInMillis());
		return Time.valueOf(String.valueOf(o));
	}

	public Time getTime(String column, Calendar cal) throws SQLException {
		return (Time)getInternalValue(cursorPosition,column);
	}

	public Time getTime(String column) throws SQLException {
		Object o = getInternalValue(cursorPosition,column);
		if (o == null) return null;
		if (o instanceof Time) return (Time)o;
		if (o instanceof java.util.Date) 
			return new Time(((java.util.Date)o).getTime());
		if (o instanceof Calendar) 
			return new Time(((Calendar)o).getTimeInMillis());
		return Time.valueOf(String.valueOf(o));
	}

	public Timestamp getTimestamp(int column, Calendar cal) throws SQLException {
		return (Timestamp)getInternalValue(cursorPosition,column);
	}

	public Timestamp getTimestamp(int column) throws SQLException {
		Object o = getInternalValue(cursorPosition,column);
		if (o == null) return null;
		if (o instanceof Timestamp) return (Timestamp)o;
		if (o instanceof java.util.Date) 
			return new Timestamp(((java.util.Date)o).getTime());
		if (o instanceof Calendar) 
			return new Timestamp(((Calendar)o).getTimeInMillis());
		return Timestamp.valueOf(String.valueOf(o));
	}

	public Timestamp getTimestamp(String column, Calendar cal) throws SQLException {
		return (Timestamp)getInternalValue(cursorPosition,column);
	}

	public Timestamp getTimestamp(String column) throws SQLException {
		Object o = getInternalValue(cursorPosition,column);
		if (o == null) return null;
		if (o instanceof Timestamp) return (Timestamp)o;
		if (o instanceof java.util.Date) 
			return new Timestamp(((java.util.Date)o).getTime());
		if (o instanceof Calendar) 
			return new Timestamp(((Calendar)o).getTimeInMillis());
		return Timestamp.valueOf(String.valueOf(o));
	}

	public int getType() throws SQLException {
		return TYPE_SCROLL_INSENSITIVE;
	}

	public InputStream getUnicodeStream(int column) throws SQLException {
		return (InputStream)getInternalValue(cursorPosition,column);
	}

	public InputStream getUnicodeStream(String column) throws SQLException {
		return (InputStream)getInternalValue(cursorPosition,column);
	}

	public URL getURL(int column) throws SQLException {
		return (URL)getInternalValue(cursorPosition,column);
	}

	public URL getURL(String column) throws SQLException {
		return (URL)getInternalValue(cursorPosition,column);
	}

	public SQLWarning getWarnings() throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}

	public void insertRow() throws SQLException {
		if (!insertRow) throw new SQLException("Cannot insert any row except the insert row.");
		// TODO: Add logic to check nullability.
		
	}

	public boolean isAfterLast() throws SQLException {
		return cursorPosition >= AFTERLAST;
	}

	public boolean isBeforeFirst() throws SQLException {
		return cursorPosition <= BEFOREFIRST;
	}

	public boolean isFirst() throws SQLException {
		return data.size() > 0 && !insertRow && cursorPosition == BEFOREFIRST + 1;
	}

	public boolean isLast() throws SQLException {
		return data.size() > 0 && !insertRow && cursorPosition == AFTERLAST - 1;
	}

	public boolean last() throws SQLException {
		return absolute(-1);
	}

	public void moveToCurrentRow() throws SQLException {
		insertRow = false;
	}

	public void moveToInsertRow() throws SQLException {
		insertRow = true;
	}

	public boolean next() throws SQLException {
		return relative(1);
	}

	public boolean previous() throws SQLException {
		return relative(-1);
	}

	public void refreshRow() throws SQLException {
		// TODO: blow away update row
		
	}

	public boolean relative(int offset) throws SQLException {
		return absolute(cursorPosition+offset);
	}

	public boolean rowDeleted() throws SQLException {
		// TODO: Possibly implement deletion detection
		return false;
	}

	public boolean rowInserted() throws SQLException {
		// TODO: Possibly implement insertion detection
		return false;
	}

	public boolean rowUpdated() throws SQLException {
		// TODO: Possibly implement update detection.
		return false;
	}

	public void setFetchDirection(int direction) throws SQLException {
		this.fetchDirection = direction;
	}

	public void setFetchSize(int rows) throws SQLException {
		if (rows < 0 || (this.statement != null && rows > statement.getMaxRows())) 
			throw new SQLException("Fetch size less than zero or greater than statement's maximum rows.");
		else this.fetchSize = rows;
	}

	public void updateArray(int column, Array x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateArray(String column, Array x) throws SQLException {
		updateArray(findColumn(column),x);
	}

	public void updateAsciiStream(int column, InputStream x, int length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateAsciiStream(String column, InputStream x, int length) throws SQLException {
		updateAsciiStream(findColumn(column),x,length);
	}

	public void updateBigDecimal(int column, BigDecimal x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateBigDecimal(String column, BigDecimal x) throws SQLException {
		updateBigDecimal(findColumn(column),x);
	}

	public void updateBinaryStream(int column, InputStream x, int length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateBinaryStream(String column, InputStream x, int length) throws SQLException {
		updateBinaryStream(findColumn(column),x,length);
	}

	public void updateBlob(int column, Blob x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateBlob(String column, Blob x) throws SQLException {
		updateBlob(findColumn(column),x);
	}

	public void updateBoolean(int column, boolean x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateBoolean(String column, boolean x) throws SQLException {
		updateBoolean(findColumn(column),x);
	}

	public void updateByte(int column, byte x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateByte(String column, byte x) throws SQLException {
		updateByte(findColumn(column),x);
	}

	public void updateBytes(int column, byte[] x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateBytes(String column, byte[] x) throws SQLException {
		updateBytes(findColumn(column),x);
	}

	public void updateCharacterStream(int column, Reader x, int length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateCharacterStream(String column, Reader reader, int length) throws SQLException {
		updateCharacterStream(findColumn(column),reader,length);
	}

	public void updateClob(int column, Clob x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateClob(String column, Clob x) throws SQLException {
		updateClob(findColumn(column),x);
	}

	public void updateDate(int column, Date x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateDate(String column, Date x) throws SQLException {
		updateDate(findColumn(column),x);
	}

	public void updateDouble(int column, double x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateDouble(String column, double x) throws SQLException {
		updateDouble(findColumn(column),x);
	}

	public void updateFloat(int column, float x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateFloat(String column, float x) throws SQLException {
		updateFloat(findColumn(column),x);
	}

	public void updateInt(int column, int x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateInt(String column, int x) throws SQLException {
		updateInt(findColumn(column),x);
	}

	public void updateLong(int column, long x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateLong(String column, long x) throws SQLException {
		updateLong(findColumn(column),x);
	}

	public void updateNull(int column) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateNull(String column) throws SQLException {
		updateNull(findColumn(column));
	}

	public void updateObject(int column, Object x, int scale) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateObject(int column, Object x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateObject(String column, Object x, int scale) throws SQLException {
		updateObject(findColumn(column),x,scale);
	}

	public void updateObject(String column, Object x) throws SQLException {
		updateObject(findColumn(column),x);
	}

	public void updateRef(int column, Ref x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateRef(String column, Ref x) throws SQLException {
		updateRef(findColumn(column),x);
	}

	public void updateRow() throws SQLException {
		// TODO: Implement update call.
		throw new UnsupportedOperationException("Not yet implemented");
	}

	public void updateShort(int column, short x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateShort(String column, short x) throws SQLException {
		updateShort(findColumn(column),x);
	}

	public void updateString(int column, String x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateString(String column, String x) throws SQLException {
		updateString(findColumn(column),x);
	}

	public void updateTime(int column, Time x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateTime(String column, Time x) throws SQLException {
		updateTime(findColumn(column),x);
	}

	public void updateTimestamp(int column, Timestamp x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	public void updateTimestamp(String column, Timestamp x) throws SQLException {
		updateTimestamp(findColumn(column),x);
	}

	public boolean wasNull() throws SQLException {
		// TODO: Implement very awkward wasNull() method.
		return false;
	}
	

	class MockBlob implements Blob {
		
		private byte[] bytes;
		
		public MockBlob(byte[] bytes) {
			this.bytes=bytes;
		}

		public InputStream getBinaryStream() throws SQLException {
			// TODO Implement getBinaryStream()
			return null;
		}

		public byte[] getBytes(long pos, int length) throws SQLException {
			// TODO Implement getBinaryStream()
			if (false) bytes.hashCode();
			return null;
		}

		public long length() throws SQLException {
			// TODO Implement length()
			return 0;
		}

		public long position(Blob pattern, long start) throws SQLException {
			// TODO Implement position(Blob,long)
			return 0;
		}

		public long position(byte[] pattern, long start) throws SQLException {
			// TODO Implement position(byte[],long)
			return 0;
		}

		public OutputStream setBinaryStream(long pos) throws SQLException {
			// TODO Implement setBinaryStream(long)
			return null;
		}

		public int setBytes(long pos, byte[] bytes, int offset, int len) throws SQLException {
			// TODO Implement setBytes(long,byte[],int,int)
			return 0;
		}

		public int setBytes(long pos, byte[] bytes) throws SQLException {
			// TODO Implement setBytes(long,byte[])
			return 0;
		}

		public void truncate(long len) throws SQLException {
			// TODO Implement truncate(long)
		}

		@Override
		public void free() throws SQLException {
			// TODO Auto-generated method stub
			
		}

		@Override
		public InputStream getBinaryStream(long pos, long length) throws SQLException {
			// TODO Auto-generated method stub
			return null;
		}	
	}


	@Override
	public <T> T unwrap(Class<T> iface) throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public boolean isWrapperFor(Class<?> iface) throws SQLException {
		// TODO Auto-generated method stub
		return false;
	}

	@Override
	public RowId getRowId(int columnIndex) throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public RowId getRowId(String columnLabel) throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public void updateRowId(int columnIndex, RowId x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateRowId(String columnLabel, RowId x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public int getHoldability() throws SQLException {
		// TODO Auto-generated method stub
		return 0;
	}

	@Override
	public boolean isClosed() throws SQLException {
		// TODO Auto-generated method stub
		return false;
	}

	@Override
	public void updateNString(int columnIndex, String nString) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateNString(String columnLabel, String nString) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateNClob(String columnLabel, NClob nClob) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public NClob getNClob(int columnIndex) throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public NClob getNClob(String columnLabel) throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public SQLXML getSQLXML(int columnIndex) throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public SQLXML getSQLXML(String columnLabel) throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public String getNString(int columnIndex) throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public String getNString(String columnLabel) throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public Reader getNCharacterStream(int columnIndex) throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public Reader getNCharacterStream(String columnLabel) throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateClob(int columnIndex, Reader reader, long length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateClob(String columnLabel, Reader reader, long length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateClob(int columnIndex, Reader reader) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateClob(String columnLabel, Reader reader) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateNClob(int columnIndex, Reader reader) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void updateNClob(String columnLabel, Reader reader) throws SQLException {
		// TODO Auto-generated method stub
		
	}

	@Override
	public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public <T> T getObject(String columnLabel, Class<T> type) throws SQLException {
		// TODO Auto-generated method stub
		return null;
	};
	
}