摘要: 在。net平台,普通的insert语句有两种写法,不带参数insert into test(c1,c2) values(var1,var2)和带参数insert into test(c1,c2) values(:c1,:c2),它们的执行效率如何呢? 我一直以为两者类似,带参数只是类似占位符的功能,但今天同事提到传递参数类似java中的预编译功能,可以有效提高运行效率 阅读全文
posted @ 2009-09-16 09:01 Rambo'Ma 阅读(295) 评论(2) 推荐(0)