Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public java.util.Date serverDateTime(GXConnection con) throws SQLException

public String serverVersion(GXConnection con) throws SQLException
{
ResultSet rslt = con.getStatement("_ServerVERSION_", "SHOW server_version", false).executeQuery();
ResultSet rslt = con.getStatement("_ServerVERSION_", "select character_value from information_schema.sql_implementation_info where implementation_info_name = 'DBMS VERSION'", false).executeQuery();

rslt.next();
String value = rslt.getString(1);
Expand Down