Edgewall Software

Changes between Version 41 and Version 42 of DatabaseBackend


Ignore:
Timestamp:
Aug 7, 2012, 10:00:54 AM (12 years ago)
Author:
Thijs Triemstra
Comment:

document updates for mysql connection string in 1.0

Legend:

Unmodified
Added
Removed
Modified
  • DatabaseBackend

    v41 v42  
    8181mysql://dbuser:dbpass@host:port/dbname
    8282}}}
    83  * or
     83 * or when you need more options:
    8484{{{
    85 mysql://dbuser:dbpass@host/dbname
     85mysql://dbuser[:dbpass]@host[:port]/dbname[?param1=value&param2=value]
    8686}}}
     87
     88The following parameters are supported since Trac [milestone:1.0]:
     89
     90* `compress`: Enable compression (0 or 1)
     91* `init_command`: Command to run once the connection is created
     92* `named_pipe`: Use a named pipe to connect on Windows (0 or 1)
     93* `read_default_file`: Read default client values from the given file (also used for SSL configuration)
     94* `read_default_group`: Configuration group to use from the default file
     95* `unix_socket`: Use a Unix socket at the given path to connect
    8796
    8897Known issues: see [query:keywords=~mysql&status=!closed mysql-related tickets]