Skip to content

Commit

Permalink
Merge pull request #1734 from lat-lon/fix/mssqlConfig-1733
Browse files Browse the repository at this point in the history
Fix config template for MS SQL Server in the deegree web console
  • Loading branch information
stephanr authored Aug 28, 2024
2 parents 7cd2a8b + 5cda072 commit 3ff4d38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<DataSource javaClass="org.apache.commons.dbcp2.BasicDataSource" destroyMethod="close" />

<!-- Configuration of DataSource properties -->
<Property name="driverClassName" value="com.mysql.jdbc.Driver" />
<Property name="url" value="jdbc:mysql://localhost:3306/deegree"/>
<Property name="driverClassName" value="com.microsoft.sqlserver.jdbc.SQLServerDriver" />
<Property name="url" value="jdbc:sqlserver://localhost:1433;databaseName=deegree-db"/>
<Property name="username" value="kelvin" />
<Property name="password" value="s3cr3t" />
<Property name="poolPreparedStatements" value="true" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ example1_name=PostgreSQL (minimal)
example1_location=/META-INF/schemas/connectionprovider/datasource/example_dbcp_postgres.xml
example2_name=Oracle (minimal)
example2_location=/META-INF/schemas/connectionprovider/datasource/example_dbcp_oracle.xml
example3_name=MySQL (minimal)
example3_name=Microsoft SQL Server (minimal)
example3_location=/META-INF/schemas/connectionprovider/datasource/example_dbcp_mssql.xml
example4_name=JNDI
example4_location=/META-INF/schemas/connectionprovider/datasource/example_jndi.xml
Expand Down

0 comments on commit 3ff4d38

Please sign in to comment.