摘要: ExecuteReader:可以读一个表的记录,只能读不能写ExecuteNonQuery:可以写也可以读ExecuteScalar:只能读一条记录,一般用来判断数据库是否有数据等,只能读不能写ExecuteNonQuery():这个可以让我们在更新数据库时不使用 DataSet 而使用 ExecuteNonQuery 更改数据库中的数据。通过执行 UPDATE、INSERT 或 DELETE SQL语句就 可以达到更改数据库中的数据目的。即使 ExecuteNonQuery 不返回任何行,映射到参数的输 出参数或返回值仍然使用数据填充。但对于 UPDATE、INSERT 和 DELETE S 阅读全文
posted @ 2013-05-20 17:20 Binyao 阅读(2190) 评论(0) 推荐(0) 编辑
摘要: 今天修改个DB upgrade version verify tool. 在写sql 语句的时候遇到一些问题,查了些资料才知道该如何写在SQL中如何使用like: 加N会将这个key声明为Unicode,否则为默认值It's declaring the string as nvarchar data type, rather than varcharYou may have seen Transact-SQL code that passes strings around using an N prefix. This denotes that the subsequent strin 阅读全文
posted @ 2013-05-20 16:51 Binyao 阅读(957) 评论(0) 推荐(0) 编辑