我正在使用python 2.7和pymssql 1.9.908。
在.net中查询数据库,我将执行以下操作:
using (SqlCommand com = new SqlCommand("select * from Customer where CustomerId = @CustomerId", connection))
{
com.Parameters.AddWithValue("@CustomerID", CustomerID);
//Do something with the command
}
我试图弄清楚什么是python,尤其是pymssql。我意识到我可以进行字符串格式化,但是似乎不能像参数那样正确地转义(我可能对此是错误的)。
如何在python中执行此操作?
慕标5832272
慕码人8056858
相关分类