-
Notifications
You must be signed in to change notification settings - Fork 62
add MSSQL driver #2
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’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Hi @tingwei628, thanks for your contribution and terribly sorry for the extremely late response. 😞 I missed the GitHub notification and don't check this project often. We'd definitely like to merge this. Would you mind fixing the merge conflicts and maybe adding a Thanks in advance! |
|
Hi @imiric, I've already fixed the conflict!
Thanks! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I tested it with the SQL Server Docker image, and it works fine after I specified the connection string correctly.
So I'll merge this, and make some more changes, like upgrading go-mssqldb to the latest version, since 0.10.0 was released recently.
| @@ -0,0 +1,24 @@ | |||
| import sql from 'k6/x/sql'; | |||
|
|
|||
| const db = sql.open("sqlserver", "./test.db"); | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The second argument should be a connection string to showcase how it's specified for MS SQL, but it's OK, I'll fix it when I add the CI tests.
As title, I added MSSQL driver.
Thanks!