01: /*
02: * HsqlMetadata.java
03: *
04: * This file is part of SQL Workbench/J, http://www.sql-workbench.net
05: *
06: * Copyright 2002-2008, Thomas Kellerer
07: * No part of this code maybe reused without the permission of the author
08: *
09: * To contact the author please send an email to: support@sql-workbench.net
10: *
11: */
12: package workbench.db.hsqldb;
13:
14: import java.sql.Connection;
15: import workbench.db.JdbcUtils;
16:
17: /**
18: *
19: * @author support@sql-workbench.net
20: */
21: public class HsqlMetadata {
22: public static boolean supportsInformationSchema(Connection con) {
23: return JdbcUtils.hasMinimumServerVersion(con, "1.8");
24: }
25:
26: }
|