PCM_Report/install_sqlserver_driver.bat

17 lines
279 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

@echo off
echo 安装SQL Server驱动...
echo.
echo 方式1: 安装pyodbc推荐
echo ==============================
pip install pyodbc
echo.
echo 方式2: 安装pymssql备选
echo ==============================
pip install pymssql
echo.
echo 安装完成!
pause