- Add tests/ directory to .gitignore - Document database connectivity with pyodbc and config - Add project structure and file organization guidelines - Update installation steps to use requirements.txt - Document new dependencies: pandas, openpyxl, pyodbc
10 lines
281 B
Python
10 lines
281 B
Python
# ================= SQL Server 配置 =================
|
|
SQL_SERVER_CONFIG = {
|
|
'driver': 'ODBC Driver 18 for SQL Server',
|
|
'server': '192.168.110.114',
|
|
'database': 'CompanyDB',
|
|
'username': 'peng',
|
|
'password': 'Cqbld123456.',
|
|
'TrustServerCertificate': 'yes'
|
|
}
|