Whats the use of semi-colon (;) in OleDbCommand when it doesn't supports multiple Queries
I've been wondering if OleDBCommand doesn't supports multiple queries execution then why ";开发者_开发知识库" is used in it ?
The semi-colon is the SQL statement terminator. A single statement should be terminated as well, although most parsers don't require it. More info here.
精彩评论