Changes between Version 14 and Version 15 of SqlAlchemyQueryMacro


Ignore:
Timestamp:
Mar 18, 2015, 12:36:09 PM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes, added similar link

Legend:

Unmodified
Added
Removed
Modified
  • SqlAlchemyQueryMacro

    v14 v15  
    88
    99A previous version of this module is known as SqlQueryMacro.
     10
     11See also: TracSqlAlchemyBridgeIntegration
    1012
    1113== !Bugs/Feature Requests
     
    4951General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
    5052
    51 This macro requires the python-sqlalchemy ​library and makes use of its database and table modules. Please install python-sqlalchemy first.
     53This macro requires the pypi:python-sqlalchemy ​library and makes use of its database and table modules. Please install python-sqlalchemy first.
    5254After getting the source you will have to edit {{{ install_sqlalchemyquery.bash }}} to your needs, you can change:
    5355{{{#!ini
     
    7779}}}
    7880
    79 To enable, in trac.ini:
     81To enable this plugin add the following to `trac.ini`:
    8082{{{#!ini
    8183[components]
     
    8385}}}
    8486
    85 == Configure
     87== Configuration
    8688
    8789To configure this plugin, you must tell SqlAlchemy what database to connect to.
    8890
    89 In trac.ini :
     91In `trac.ini`:
    9092
    9193{{{#!ini
     
    9395uri = mysql://user:password@hostname/database
    9496}}}
     97
    9598You can also use Oracle or SQLite:
     99
    96100{{{#!ini
    97101uri = oracle://user:password@tns
    98102}}}
    99 or
     103
     104or:
     105
    100106{{{#!ini
    101107uri = sqlite:///path/to/db