Query SQL Browser for port used by named instance
Project description
sqlserverport
A simple Python module to query the SQL Browser service for the port number of a SQL Server instance. The Linux implementation of Microsoft's "ODBC Driver xx for SQL Server" is (still) unable to resolve instance names, so Windows users can just do
import pyodbc
serverspec = r'myserver\SQLEXPRESS'
conn = pyodbc.connect('DRIVER=ODBC Driver 17 for SQL Server;SERVER={};...'.format(serverspec))
but that won't work on Linux. This module lets us do
import pyodbc
from sqlserverport import sqlserverport
servername = 'myserver'
serverspec = '{0},{1}'.format(
servername,
sqlserverport.lookup(servername, 'SQLEXPRESS'))
conn = pyodbc.connect('DRIVER=ODBC Driver 17 for SQL Server;SERVER={};...'.format(serverspec))
Installing
pip install sqlserverport
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sqlserverport-1.0.0.tar.gz
(2.8 kB
view hashes)
Built Distribution
Close
Hashes for sqlserverport-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54cd6b6ab5f6c68f2efed19015cbe43de6df7906e5d29ee8a28d9ed4db516e62 |
|
MD5 | 0949022f9414f3de6b6565c03f75e662 |
|
BLAKE2b-256 | 2703ea307eb62ce91fe6a739303c3475157c4a614aba6861d76c4052f43f6115 |