Changes between Version 8 and Version 9 of MsSqlBackendPlugin


Ignore:
Timestamp:
Jun 14, 2015, 10:37:00 AM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes, tagged with license, removed obscure known bugs

Legend:

Unmodified
Added
Removed
Modified
  • MsSqlBackendPlugin

    v8 v9  
    55== Description
    66
    7 Microsoft SQL Server as a backend DB, crudely implemented.
     7This plugin allows you to connect Microsoft SQL Server as a backend database to Trac, albeit crudely implemented.
    88
    9 A fork, for Trac 1.1.2 and focused on ticketing: https://github.com/Reposoft/trac-mssql
     9There is also a fork, implemented for Trac 1.1.2 and focused on ticketing: https://github.com/Reposoft/trac-mssql, which is released under a Modified BSD license.
    1010
    1111Related tickets:
    12  - trac:ticket:329 Adding support for Microsoft SQL Server as a backend DB
     12 - trac:ticket:329 Adding support for Microsoft SQL Server as a backend database
    1313 - #2277 ODBC connection
    1414
     
    1919
    2020If you have any issues, create a
    21 [http://trac-hacks.org/newticket?component=MsSqlBackendPlugin&owner=matobaa new ticket].
     21[/newticket?component=MsSqlBackendPlugin new ticket].
    2222
    2323[[TicketQuery(component=MsSqlBackendPlugin&group=type,format=progress)]]
    24 
    25 === Known bugs
    26  - !report:7
    27  - !report:8
    2824
    2925== Download
     
    3531You can check out MsSqlBackendPlugin from [http://trac-hacks.org/svn/mssqlbackendplugin here] using Subversion, or [source:mssqlbackendplugin browse the source] with Trac.
    3632
    37 == Usage
     33== Installation / Configuration
    3834
    39  - Download the source, setup.py bdist_egg, then place dist/*.egg on PYTHONPATH.
    40  - Prepare {{{mssql_enabler.ini}}} contains following:
    41 {{{#!ini
    42 [compnents]
     35 - Download the source, perform `setup.py bdist_egg`, then place `dist/*.egg` into your PYTHONPATH.
     36 - Add the following to your `trac.ini` file:
     37 {{{#!ini
     38[components]
    4339mssql_backend.* = enabled
    4440}}}
    45  - Create {{{"tracdb"}}} databse on MS SQL Server.
    46  - Setup {{{"tracdb"}}} DSN connected to database above with ODBC Administrator.
     41 - Create `tracdb` database on MS SQL Server.
     42 - Setup `tracdb` DSN connected to database above with ODBC Administrator.
    4743 - Do {{{trac-admin __projectpath__ initenv --inherit=path/to/mssql_enabler.ini new "odbc:/DSN=tracdb;Trusted_Connection=yes" }}} to create project.
    4844