Skip to content

Commit

Permalink
no pooling in sqlsrv/odbc
Browse files Browse the repository at this point in the history
  • Loading branch information
hrach committed Dec 18, 2024
1 parent 9d587d7 commit 4437ba2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,10 @@ jobs:
uses: actions/checkout@v4

- name: Install Microsoft ODBC
run: sudo ACCEPT_EULA=Y apt-get install msodbcsql18 -y
run: |
sudo ACCEPT_EULA=Y apt-get install msodbcsql18 -y
sudo echo "\n[ODBC]\nPooling=No" >> /etc/odbcinst.ini
sudo cat /etc/odbcinst.ini
- name: Create MS SQL Database
run: docker exec -i mssql /opt/mssql-tools18/bin/sqlcmd -C -S localhost -U SA -P 'YourStrong!Passw0rd' -Q 'CREATE DATABASE nextras_dbal_test'
Expand Down

0 comments on commit 4437ba2

Please sign in to comment.