Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Replace MSSQL dialect with Tedious.js implementation #2857

Merged
merged 37 commits into from Feb 8, 2021
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
c3b18e1
wip: translating node-mssql to tedious
tylerjwatson Jun 7, 2018
a79ad48
acquireRawConnection
tylerjwatson Jun 8, 2018
fa51a25
All tests pass apart from two
tylerjwatson Jun 11, 2018
270079c
Fixed an issue where the error handler would throw exceptions
tylerjwatson Jun 11, 2018
6f4e595
meta: adding Lib to git for the time being
tylerjwatson Jun 11, 2018
bc0f216
Production build updates
tylerjwatson Jun 12, 2018
6f79c5f
Changed JSON type from 'text' to 'varchar' in MSSQL
tylerjwatson Jun 20, 2018
2b7387a
Adding lib to builds
tylerjwatson Jun 20, 2018
c5772cc
Merge branch 'tedious' of github.com:tylerjwatson/knex into tedious
tylerjwatson Jun 20, 2018
f89cae4
MSSQL: Transaction Bug
tylerjwatson Jun 25, 2018
041230c
Fix bug in rollback
tylerjwatson Jun 25, 2018
0ff9055
Cleanup for PR
tylerjwatson Oct 18, 2018
eb4635b
Updates for PR
tylerjwatson Oct 18, 2018
4e90239
meta: upgrade tedious@3
tylerjwatson Dec 21, 2018
488b5df
rebase mssql onto knex 0.20.0
tylerjwatson Oct 30, 2019
260bbe3
meta: fix coverage
tylerjwatson Oct 30, 2019
1c8ff48
Merge branch 'upstream-tedious' into tedious
tylerjwatson Oct 30, 2019
d6fe43c
mssql: use proper authentication object for connection
tylerjwatson Oct 30, 2019
0ff949f
mssql: support all tedious authentication types
tylerjwatson Dec 30, 2019
a301064
Merge branch 'master' into tedious
tylerjwatson Dec 30, 2019
507bf57
tedious: varbinary support
tylerjwatson Jun 11, 2020
54757b5
Bounce builder query-error to query builder query-error
tylerjwatson Jun 30, 2020
a651aa9
Pass queryContext to query-error
tylerjwatson Jul 14, 2020
4b0e50b
Reintroduce error throwing on promise rejections
Aug 24, 2020
78a4255
meta: trustServerCertificate in MssqlConnectionConfig
Aug 24, 2020
dab6270
Merge branch 'master' of https://github.com/knex/knex into tedious
kibertoad Feb 5, 2021
63af78d
Sync with master
kibertoad Feb 5, 2021
83dfa5d
Fix some of merge issues
kibertoad Feb 5, 2021
314bb3a
Restore original test assertion
kibertoad Feb 5, 2021
6fb61d7
Restore lost MSSQL fixes
kibertoad Feb 5, 2021
c60e0ae
Restore decimal fix
kibertoad Feb 5, 2021
855e2d3
mssql: stream: handle stream response
tylerjwatson Feb 6, 2021
3ee204a
mssql: response: format scalar values according to spec
tylerjwatson Feb 6, 2021
ea18069
mssql: transaction: emit query events on savepoint and rollbackTo
tylerjwatson Feb 6, 2021
68399d6
mssql: tedious@11
tylerjwatson Feb 6, 2021
6365aa0
mssql: chore: transaction clean up
tylerjwatson Feb 6, 2021
44e6620
mssql: transaction: error on rollback
tylerjwatson Feb 8, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -42,7 +42,6 @@
"mariasql": "^0.2.6",
"mocha": "^3.5.3",
"mock-fs": "^4.4.2",
"mssql": "^4.1.0",
"mysql": "^2.15.0",
"mysql2": "^1.5.3",
"pg": "^7.4.1",
Expand All @@ -54,6 +53,7 @@
"sqlite3": "^4.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.9.0",
"tedious":"^2.6.1",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is indentation correct?

"through": "^2.3.8",
"toxiproxy-node-client": "^2.0.6"
},
Expand Down