谁来帮我看看这条代码的含义sqlStr“select*fromsignaltabwherecodelike‘%X%’”rsconn.Execute(sqlStr)其
谁来帮我看看这条代码的含义
sqlStr = “select * from signaltab where code like ‘%X%’”
rs = conn.Execute(sqlStr)
其中,rs = conn.Execute(sqlStr)的含义是把SQL语句查询的结果存入rs还是把什么
[解决办法]
rs = conn.Execute(sqlStr)的含义是
使用conn所连接的数据库执行sqlStr
