EMMA Coverage Report (generated Wed Jun 28 19:54:35 CEST 2006)
[all classes][smallsql.database]

COVERAGE SUMMARY FOR SOURCE FILE [StoreNoCurrentRow.java]

nameclass, %method, %block, %line, %
StoreNoCurrentRow.java100% (1/1)29%  (5/17)32%  (15/47)29%  (5/17)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class StoreNoCurrentRow100% (1/1)29%  (5/17)32%  (15/47)29%  (5/17)
deleteRow (SSConnection): void 0%   (0/1)0%   (0/3)0%   (0/1)
getBoolean (int, int): boolean 0%   (0/1)0%   (0/3)0%   (0/1)
getBytes (int, int): byte [] 0%   (0/1)0%   (0/3)0%   (0/1)
getDouble (int, int): double 0%   (0/1)0%   (0/3)0%   (0/1)
getFloat (int, int): float 0%   (0/1)0%   (0/3)0%   (0/1)
getInt (int, int): int 0%   (0/1)0%   (0/3)0%   (0/1)
getLong (int, int): long 0%   (0/1)0%   (0/3)0%   (0/1)
getMoney (int, int): long 0%   (0/1)0%   (0/3)0%   (0/1)
getNextPagePos (): long 0%   (0/1)0%   (0/2)0%   (0/1)
getNumeric (int, int): MutableNumeric 0%   (0/1)0%   (0/3)0%   (0/1)
getUsedSize (): int 0%   (0/1)0%   (0/2)0%   (0/1)
scanObjectOffsets (int [], int []): void 0%   (0/1)0%   (0/1)0%   (0/1)
StoreNoCurrentRow (): void 100% (1/1)100% (3/3)100% (1/1)
getObject (int, int): Object 100% (1/1)100% (3/3)100% (1/1)
getString (int, int): String 100% (1/1)100% (3/3)100% (1/1)
isNull (int): boolean 100% (1/1)100% (3/3)100% (1/1)
noCurrentRow (): SQLException 100% (1/1)100% (3/3)100% (1/1)

1/* =============================================================
2 * SmallSQL : a free Java DBMS library for the Java(tm) platform
3 * =============================================================
4 *
5 * (C) Copyright 2004-2006, by Volker Berlin.
6 *
7 * Project Info:  http://www.smallsql.de/
8 *
9 * This library is free software; you can redistribute it and/or modify it 
10 * under the terms of the GNU Lesser General Public License as published by 
11 * the Free Software Foundation; either version 2.1 of the License, or 
12 * (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful, but 
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
16 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 
17 * License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 
22 * USA.  
23 *
24 * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 
25 * in the United States and other countries.]
26 *
27 * ---------------
28 * StoreNoCurrentRow.java
29 * ---------------
30 * Author: Volker Berlin
31 * 
32 */
33package smallsql.database;
34 
35import java.sql.*;
36 
37/*
38 * @author Volker Berlin
39 *
40 * This store is used if the row pointer is before or after the rows.
41 */
42public class StoreNoCurrentRow extends Store {
43 
44        private SQLException noCurrentRow(){
45                return Utils.createSQLException("No current row.");
46        }
47 
48 
49        boolean isNull(int offset) throws SQLException {
50                throw noCurrentRow();
51        }
52 
53 
54        boolean getBoolean(int offset, int dataType) throws Exception {
55                throw noCurrentRow();
56        }
57 
58 
59        byte[] getBytes(int offset, int dataType) throws Exception {
60                throw noCurrentRow();
61        }
62 
63 
64        double getDouble(int offset, int dataType) throws Exception {
65                throw noCurrentRow();
66        }
67 
68 
69        float getFloat(int offset, int dataType) throws Exception {
70                throw noCurrentRow();
71        }
72 
73 
74        int getInt(int offset, int dataType) throws Exception {
75                throw noCurrentRow();
76        }
77 
78 
79        long getLong(int offset, int dataType) throws Exception {
80                throw noCurrentRow();
81        }
82 
83 
84        long getMoney(int offset, int dataType) throws Exception {
85                throw noCurrentRow();
86        }
87 
88 
89        MutableNumeric getNumeric(int offset, int dataType) throws Exception {
90                throw noCurrentRow();
91        }
92 
93 
94        Object getObject(int offset, int dataType) throws Exception {
95                throw noCurrentRow();
96        }
97 
98 
99        String getString(int offset, int dataType) throws Exception {
100                throw noCurrentRow();
101        }
102 
103 
104 
105        void scanObjectOffsets(int[] offsets, int[] dataTypes) {
106                // TODO Auto-generated method stub
107 
108        }
109 
110 
111        int getUsedSize() {
112                // TODO Auto-generated method stub
113                return 0;
114        }
115 
116        long getNextPagePos(){
117                //TODO
118                return -1;
119        }
120        
121        void deleteRow(SSConnection con) throws SQLException{
122                throw noCurrentRow();
123        }
124}

[all classes][smallsql.database]
EMMA 2.1.5320 (stable) (C) Vladimir Roubtsov