diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-03-09 16:18:51 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-03-09 16:18:51 +0100 |
commit | 7b9dc39aad7b2694899eebb97c669c35e6ef6c59 (patch) | |
tree | e0ee71833507065a60b3266f407be84ee866e09b /sonar-application/src | |
parent | b62e3e85e99579a4ef56e24331296122d28f68c7 (diff) | |
download | sonarqube-7b9dc39aad7b2694899eebb97c669c35e6ef6c59.tar.gz sonarqube-7b9dc39aad7b2694899eebb97c669c35e6ef6c59.zip |
Complete documentation of db section in sonar.properties
Diffstat (limited to 'sonar-application/src')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index f01fac2ebd2..22d2367f4fd 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -28,6 +28,8 @@ #----- MySQL 5.x +# Only InnoDB storage engine is supported (not myISAM). +# Only the bundled driver is supported. #sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance @@ -44,8 +46,9 @@ #sonar.jdbc.url=jdbc:postgresql://localhost/sonar -#----- Microsoft SQLServer 2005/2008 -# Only the distributed jTDS driver is supported. +#----- Microsoft SQLServer 2008/2012 +# Only the bundled jTDS driver is supported. +# Collation must be case-sensitive (CS) and accent-sensitive (AS). #sonar.jdbc.url=jdbc:jtds:sqlserver://localhost/sonar;SelectMethod=Cursor |