summaryrefslogtreecommitdiffstats
path: root/connectivity/qa/complex/connectivity/hsqldb/DatabaseMetaData.java
blob: 66a252d7ea4cc7dd91bdaaf3a2f6fc83026f6fe1 (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
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */
package complex.connectivity.hsqldb;

import complex.connectivity.HsqlDriverTest;
import java.sql.*;
import java.lang.reflect.Method;


public class DatabaseMetaData {

    private final java.sql.DatabaseMetaData m_xMD;
    private final HsqlDriverTest m_TestCase;

    /** Creates a new instance of DatabaseMetaData */
    public DatabaseMetaData(HsqlDriverTest _testCase,java.sql.DatabaseMetaData _xmd) {
        m_TestCase = _testCase;
        m_xMD = _xmd;
    }

    protected void assure(String _sText,boolean btest){
        m_TestCase.assurePublic(_sText,btest);
    }

    protected void testMethod(String sName,Class<?>[] params,Object[] objParams,int nCount){
        try {
            System.out.println("test method " + sName);

            Method aGet = ((Object)m_xMD).getClass().getDeclaredMethod(sName, params);
            if ( aGet != null ){
                ResultSet rs = (ResultSet)aGet.invoke(m_xMD, objParams);
                ResultSetMetaData rsMD = rs.getMetaData();

                assure( sName + " returns wrong column count" , rsMD.getColumnCount() == nCount);
                rs.close();
            }
            else
                assure( sName + " returns wrong column count" , false);
        } catch( java.lang.NoSuchMethodException ex ) {
            assure("Method " + sName + " could not be found!",false);
        } catch( java.lang.IllegalAccessException ex ) {
            assure("IllegalAccessException!",false);
        } catch( SQLException ex ) {
            assure("SQLException occurred: " + ex.getMessage() ,false);
        } catch( java.lang.reflect.InvocationTargetException ex ) {
            assure("IllegalAccessException!",false);
        }
    }

    public void test() {

        try {
            ResultSet rs = m_xMD.getTables(null, null, "TESTCASE", null);
            while (rs.next()) {
                String catalog = rs.getString(1);
                if (rs.wasNull())
                    catalog = null;

                String schema = rs.getString(2);
                if (rs.wasNull())
                    schema = null;

                String table = rs.getString(3);
                String type = rs.getString(4);
                System.out.println("Catalog: " + catalog + " Schema: " + schema
                        + " Table: " + table + " Type: " + type);
                System.out
                        .println("------------------ Columns ------------------");
                ResultSet rsColumns = m_xMD.getColumns(catalog, schema, table,
                        "%");
                while (rsColumns.next()) {
                    System.out.println("Column: " + rsColumns.getString(4)
                            + " Type: " + rsColumns.getInt(5) + " TypeName: "
                            + rsColumns.getString(6));
                }

            }
            rs.close();
        } catch (Exception e) {

        }
    }
}