Method getDatabaseProductVersion()
Return type:
java.lang.String
Member of:
java.sql.DatabaseMetaData
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
System.out.println("Connected to " + dbmd.getDatabaseProductName() + " " + dbmd.getDatabaseProductVersion());
2
System.out.println("Database Product Version = " + m.getDatabaseProductVersion());
3
+ " - " + dbmd.getDatabaseProductVersion ();
4
String theVersion = dmd.getDatabaseProductVersion().toLowerCase();
5
this.databaseProductVersion = dbMeta.getDatabaseProductVersion ();
6
+ " " + data.getDatabaseProductVersion() + " started." );
7
String theVersion = dmd.getDatabaseProductVersion()
8
System.out.println("Connected to " + dbmd.getDatabaseProductName() + " " + dbmd.getDatabaseProductVersion());
9
String databaseProductVersion = metaData.getDatabaseProductVersion();
10
inform(" - DB Version:\t" + conMD.getDatabaseProductVersion());
11
"Version: " + dMeta.getDatabaseProductVersion());
12
if (Debug.infoOn()) Debug.logInfo("Database Product Version is " + dbData.getDatabaseProductVersion(), module);
13
+ dmd.getDatabaseProductVersion()
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.