摘要: using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; 阅读全文
posted @ 2024-10-09 17:47 字母搬运工-Hauk 阅读(102) 评论(0) 推荐(0)
摘要: # coding:utf-8 import pymssql def fn_query(cursor): # 查询 sql = 'SELECT * from Test' cursor.execute(sql) row = cursor.fetchone() while row: print(row) 阅读全文
posted @ 2024-10-09 17:46 字母搬运工-Hauk 阅读(143) 评论(0) 推荐(0)
摘要: static void Main(string[] args) { ConnectionConfig connectionConfig = new ConnectionConfig() { DbType = DbType.SqlServer, ConnectionString = "Server=. 阅读全文
posted @ 2024-10-09 17:46 字母搬运工-Hauk 阅读(145) 评论(0) 推荐(0)