1
1
Peewee
2
2
######
3
3
A database driver to add Microsoft SQL Server and Azure support using
4
- `pymssql <http://pymssql.org >`_ and `FreeTDS <http://freetds.org >`_ in
4
+ `pymssql <http://pymssql.org >`__ and `FreeTDS <http://freetds.org >`__ in
5
5
Peewee and should run on most Unix-like systems, Microsoft Windows and Mac OS X.
6
6
7
7
In it's current state you should be able to access data and possibly do certain
@@ -22,10 +22,10 @@ Or alternatively, select a release or development version from Github and run:
22
22
23
23
Getting Started
24
24
===============
25
- For help on installing and configuring `FreeTDS <http://freetds.org >`_ I
25
+ For help on installing and configuring `FreeTDS <http://freetds.org >`__ I
26
26
recommend taking a look at the
27
- `guide <http://pymssql.org/en/latest/freetds.html >`_ in the
28
- `pymssql <http://www.pymssql.org >`_ documentation.
27
+ `guide <http://pymssql.org/en/latest/freetds.html >`__ in the
28
+ `pymssql <http://www.pymssql.org >`__ documentation.
29
29
30
30
And then you should be able to instantiate a database as below and start
31
31
building your models for accessing data:
@@ -34,7 +34,7 @@ building your models for accessing data:
34
34
35
35
from peewee_mssql import MssqlDatabase
36
36
37
- db = MssqlDatabase(' MyDatabase' , host = ' host.example.com' , user = r ' domain\\ username' , password = ' password' )
37
+ db = MssqlDatabase(' MyDatabase' , host = ' host.example.com' , user = ' domain\\ username' , password = ' password' )
38
38
39
39
If you are using Microsoft SQL Server 2005 you will need to use the legacy
40
40
datetime data types, simple pass `use_legacy_datetime=True ` to the
0 commit comments