Database Connection ConfigurationThese are the basic settings to enable connection to the Phixflow database. Property | Requires Configuration | Default Value | Explanation |
---|
db.url | Always | <none> | The jdbc url of the database including any required parameters. For more information on defining the database URL consult your Database Administrator. Example URLs MySQL jdbc:mysql://localhost/phixflow?defaultFetchSize=2000&allowPublicKeyRetrieval=true Note the allowPublicKeyRetrieval parameter may be required depending on your setup
Oracle jdbc:oracle:thin:@//localhost:1521/pdb.local
SQL Server jdbc:sqlserver://;database=webtrunk;sendStringParametersAsUnicode=false;encrypt=false
MS SQL Server JDBC driver version 12.6.1 onwards, defaults to using an encrypted connection which may require additional parameters to be added to the URL. If encryption is not required, add 'encrypt=false' to the URL. See https://learn.microsoft.com/en-us/sql/connect/jdbc/microsoft-jdbc-driver-for-sql-server?view=sql-server-ver16 | phixflow-database-user | Often | <none> | Default key name containing the database username. This can also be stored in the keystore. | phixflow-database-password | Often | <none> | Default key name containing the database password. This can also be stored in the keystore. |
|