Skip to content

Commit

Permalink
Fixing issues with SQL Server
Browse files Browse the repository at this point in the history
  • Loading branch information
kenshaw committed Mar 29, 2023
1 parent 3a6c9f5 commit 04f5859
Show file tree
Hide file tree
Showing 24 changed files with 200 additions and 164 deletions.
2 changes: 1 addition & 1 deletion _examples/a_bit_of_everything/gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ DSNS+=(
[oracle]=or://$TEST:$TEST@localhost:1521/db1
[postgres]=pg://$TEST:$TEST@localhost/$TEST
[sqlite3]=sq:$TEST.db
[sqlserver]=ms://$TEST:$TEST@localhost/$TEST
[sqlserver]=ms://$TEST:$TEST@localhost/?database=$TEST
)

APPLY=0
Expand Down
2 changes: 1 addition & 1 deletion _examples/a_bit_of_everything/mysql/abitofeverything.xo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 8 additions & 10 deletions _examples/a_bit_of_everything/mysql/xo.xo.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions _examples/a_bit_of_everything/mysql/xo.xo.sql

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions _examples/a_bit_of_everything/mysql/xo.xo.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion _examples/booktest/gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ DSNS+=(
[oracle]=or://$TEST:$TEST@localhost:1521/db1
[postgres]=pg://$TEST:$TEST@localhost/$TEST
[sqlite3]=sq:$TEST.db
[sqlserver]=ms://$TEST:$TEST@localhost/$TEST
[sqlserver]=ms://$TEST:$TEST@localhost/?database=$TEST
)

APPLY=0
Expand Down
105 changes: 61 additions & 44 deletions _examples/django/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion _examples/django/gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ DSNS+=(
[oracle]=or://$TEST:$TEST@localhost/db1
[postgres]=pg://$TEST:$TEST@localhost/$TEST
[sqlite3]=sq:$TEST.db
[sqlserver]=ms://$TEST:$TEST@localhost/$TEST
[sqlserver]=ms://$TEST:$TEST@localhost/?database=$TEST
)

APPLY=0
Expand Down
2 changes: 1 addition & 1 deletion _examples/django/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ case $TYPE in
[user]=django
[pass]=django
[name]=django
[options]="'OPTIONS': {'driver': 'ODBC Driver 18 for SQL Server'},"
[options]="'OPTIONS': {'driver': 'ODBC Driver 18 for SQL Server', 'extra_params': 'Encrypt=no'},"
)
;;
esac
Expand Down
Loading

0 comments on commit 04f5859

Please sign in to comment.