Edgewall Software

Changes between Version 18 and Version 19 of MySqlDb


Ignore:
Timestamp:
Oct 26, 2007, 12:02:57 PM (17 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • MySqlDb

    v18 v19  
    4242See also #3884.
    4343
     44Usually, you also want to create a user and give this user access to the database created above:
     45{{{
     46CREATE USER tracuser IDENTIFIED BY 'password';
     47GRANT ALL ON trac.* TO tracuser;
     48}}}
     49The connection string will then be:
     50{{{
     51mysql://tracuser:password@localhost/trac
     52}}}
    4453=== MySQLdb ===
    4554The recommended version is MySQL-python 1.2.2.