Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.personaldb / org.gvsig.personaldb.main / src / main / java / org / gvsig / personaldb / main / Main.java @ 40560

History | View | Annotate | Download (2.14 KB)

1 40560 jjdelcerro
/**
2
 * gvSIG. Desktop Geographic Information System.
3 40435 jjdelcerro
 *
4 40560 jjdelcerro
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6 40435 jjdelcerro
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8 40560 jjdelcerro
 * as published by the Free Software Foundation; either version 3
9 40435 jjdelcerro
 * of the License, or (at your option) any later version.
10 40560 jjdelcerro
 *
11 40435 jjdelcerro
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15 40560 jjdelcerro
 *
16 40435 jjdelcerro
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18 40560 jjdelcerro
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 40435 jjdelcerro
 * MA  02110-1301, USA.
20 40560 jjdelcerro
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23 40435 jjdelcerro
 */
24
package org.gvsig.personaldb.main;
25
26
import java.sql.Connection;
27
import java.sql.DatabaseMetaData;
28
import java.sql.SQLException;
29
30
import org.slf4j.Logger;
31
import org.slf4j.LoggerFactory;
32
33
import org.gvsig.personaldb.PersonalDBException;
34
import org.gvsig.personaldb.PersonalDBLocator;
35
import org.gvsig.personaldb.PersonalDBManager;
36
import org.gvsig.tools.library.impl.DefaultLibrariesInitializer;
37
38
/**
39
 * Main executable class for testing the PersonalDB library.
40
 *
41
 * @author gvSIG Team
42
 * @version $Id$
43
 */
44
public class Main {
45
46
    private static final Logger LOG = LoggerFactory.getLogger(Main.class);
47
48
    public static void main(String args[]) {
49
        Main main = new Main();
50
        try {
51
            main.show();
52
        } catch (Throwable e) {
53
            e.printStackTrace();
54
            System.exit(-1);
55
        }
56
        System.exit(0);
57
    }
58
59
    public void show() throws PersonalDBException, SQLException {
60
61
        new DefaultLibrariesInitializer().fullInitialize();
62
        PersonalDBManager manager = PersonalDBLocator.getManager();
63
64
        Connection connection = manager.getConnection();
65
        DatabaseMetaData metadata = connection.getMetaData();
66
        LOG.info("DatabaseMetadata: {}", metadata);
67
    }
68
69
}