-
Notifications
You must be signed in to change notification settings - Fork 28
pooling support #61
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
Closed
Closed
pooling support #61
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
40e8057
refactor native layer and create reusable components
8f34903
add newline
b7fd7e0
Delete copy/assign for DriverLoader singleton
4002f47
resolve review comments
015c430
implementing c++ connection class apis
896f34d
refining
7cd9679
Merge branch 'main' into saumya/conn_implementation
gargsaumya 4591b55
refactor native layer and create reusable components
e375b20
add newline
b5a7d5a
Delete copy/assign for DriverLoader singleton
fc5903a
resolve review comments
998b25e
initial edit
7f9304b
working flow with c++ connection class
65d19a8
working interation with access token
be946d0
cleanup free() in sqlhandle
aad1e22
removed unnecessary prints
179ebf2
removing comment
70f6aa3
resolving conflict
b22b197
working
e302c0c
final working-fix test
gargsaumya 30cb602
final-working
gargsaumya e6006e9
final-working
gargsaumya File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,21 +1,44 @@ | ||
| from mssql_python import connect | ||
| from mssql_python import enable_pooling | ||
| from mssql_python import setup_logging | ||
| import os | ||
| import decimal | ||
| import time | ||
|
|
||
| setup_logging('stdout') | ||
|
|
||
| conn_str = os.getenv("DB_CONNECTION_STRING") | ||
| conn = connect(conn_str) | ||
| # conn_str = os.getenv("DB_CONNECTION_STRING") | ||
| conn_str = "Server=Saumya;DATABASE=master;UID=sa;PWD=HappyPass1234;Trust_Connection=yes;TrustServerCertificate=yes;" | ||
|
|
||
| enable_pooling(max_size=10, idle_timeout=300) | ||
| conn1 = connect(conn_str) | ||
|
|
||
| # conn.autocommit = True | ||
|
|
||
| cursor = conn.cursor() | ||
| cursor.execute("SELECT database_id, name from sys.databases;") | ||
| rows = cursor.fetchall() | ||
| cursor1 = conn1.cursor() | ||
| cursor1.execute("SELECT database_id, name from sys.databases;") | ||
| rows = cursor1.fetchone() | ||
| print (rows) | ||
|
|
||
| print(conn1._conn) | ||
| print("First time check") | ||
| # time.sleep(10) | ||
|
|
||
| # cursor1.close() | ||
| # conn1.close() | ||
| print("Second time check") | ||
| # time.sleep(10) | ||
|
|
||
| conn2 = connect(conn_str) | ||
| cursor2 = conn2.cursor() | ||
| cursor2.execute("SELECT database_id, name from sys.databases;") | ||
| row2 = cursor2.fetchone() | ||
| print(row2) | ||
|
|
||
| print(conn2._conn) | ||
| print("Third time check") | ||
| # time.sleep(10) | ||
|
|
||
| for row in rows: | ||
| print(f"Database ID: {row[0]}, Name: {row[1]}") | ||
|
|
||
| cursor.close() | ||
| conn.close() | ||
| cursor2.close() | ||
| conn2.close() | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
[nitpick] The sample script accesses a private attribute
_conn; consider exposing a public API or removing debug prints to avoid relying on internal implementation details.