Changes between Version 11 and Version 12 of SqlAlchemyQueryMacro


Ignore:
Timestamp:
Mar 3, 2015, 8:17:46 PM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • SqlAlchemyQueryMacro

    v11 v12  
    4545General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
    4646
    47 his macro requires the python-sqlalchemy ​library and makes use of its db and table modules. Please install python-sqlalchemy first.
     47This macro requires the python-sqlalchemy ​library and makes use of its database and table modules. Please install python-sqlalchemy first.
    4848After getting the source you will have to edit {{{ install_sqlalchemyquery.bash }}} to your needs, you can change:
    4949{{{#!ini
     
    8181== Configure
    8282
    83 To configure this plugin, you must tell sqlquery what database to connect to:
     83To configure this plugin, you must tell SqlAlchemy what database to connect to.
    8484
    8585In trac.ini :
     
    8989uri = mysql://user:password@hostname/database
    9090}}}
    91 You can also use oracle or sqlite:
     91You can also use Oracle or SQLite:
    9292{{{#!ini
    9393uri = oracle://user:password@tns
     
    9797uri = sqlite:///path/to/db
    9898}}}
     99
     100Restart tracd after making these changes.
     101
    99102== Recent Changes
    100103