Connecting to SQL Server from Mac OSX
Connecting to SQL Server from Mac OSX · mkleehammer/pyodbc Wiki · GitHub
<< 위 링크를 확인하고 그대로 따라하면 됨.
FreeTDS and unixODBC 설치하기
brew Install FreeTDS and unixODBC
freetds.conf 파일 수정하기
/usr/local/etc/
에 위치에 있음.
$ tsql -C
확인할 수 있음.
아래 내용 추가하기
[MYMSSQL]
host = 도메인 또는 IP
port = 1433
tds version = 7.3
tsql
명령어로 연결확인
tsql -S MYMSSQL -U user -P password
다음 내용을 확인 할 수 있다.
locale is “en_US.UTF-8”
locale charset is “UTF-8”
using default charset “UTF-8”
1>
아래 내용 입력하여 확인하기
1> select @@VERSION
2> go
명령라인 빠져나오기
1> exit
odbcinst.ini, odbc.ini 설정파일 수정하기
odbcinst -J
명령어로 파일 위치 파악
odbcinst.ini 과 odbc.ini 파일 수정
/usr/local/ect/
에 위치해 있음.
odbcinst.ini 파일에 아래 내용 추가하기
[FreeTDS]
Description=FreeTDS Driver for Linux & MSSQL
Driver=/usr/local/lib/libtdsodbc.so
Setup=/usr/local/lib/libtdsodbc.so
UsageCount=1
odbc.ini 파일에 아래 내용 추가하기
[MYMSSQL]
Description = Test to SQLServer
Driver = FreeTDS
Servername = MYMSSQL
아래 명령어로 연결확인 하기
isql MYMSSQL user password
+———————————————————+
| Connected! |
| |
| sql-statement |
| help [tablename] |
| quit |
| |
+---------------------------------------+
DNS 설정으로 연결하기 Connect with pyodbc
test.py for sample
import pyodbc
# the DSN value should be the name of the entry in odbc.ini, not freetds.conf
conn = pyodbc.connect(‘DSN=MYMSSQL;UID=user;PWD=mypassword’)
crsr = conn.cursor()
rows = crsr.execute(“select @@VERSION”).fetchall()
print(rows)
crsr.close()
conn.close()
DSN 설정없이 연결하기..Connecting without defining a DSN
cnx = pyodbc.connect(
server=“my-server.com”,
database=“mydb”,
user=‘myuser’,
tds_version=‘7.4’,
password=“mypassword”,
port=1433,
driver=‘FreeTDS’
)
아래 링크는 작동하지 않음.
SQL Server용 Python 드라이버 - SQL Server | Microsoft Docs
링크 확인
Microsoft ODBC Driver 17 for SQL Server
brew install msodbcsql17 mssql-tools
#파이썬
'프로그래밍 > python' 카테고리의 다른 글
lxml. Do you need to install a parser library? (0) | 2024.02.13 |
---|---|
urllib3>=2.0 does not work with system Python on macOS (0) | 2024.02.13 |
Python - 파이썬 배열, 컬렉션, 리스트 다루기 (0) | 2023.01.01 |