Skip to content

Commit

Permalink
Correction for when ISC_USER envvar is not defined.
Browse files Browse the repository at this point in the history
  • Loading branch information
asfernandes committed Jun 2, 2016
1 parent 197100f commit 831e99a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ static void databaseOpened() throws SQLException
assert securityDb == null;

securityDb = (FBConnection) DriverManager.getConnection(
"jdbc:firebirdsql:embedded:" + securityDatabase + "?charSet=UTF-8");
"jdbc:firebirdsql:embedded:" + securityDatabase + "?charSet=UTF-8", "SYSDBA", null);
securityDb.setAutoCommit(false);
securityDb.setReadOnly(true);

Expand Down

0 comments on commit 831e99a

Please sign in to comment.