What should be used on a semicolon (;) system in OleDbCommand if it doesn't support multiple queries

I was wondering if OleDBCommand does not support multiple queries, then why ";" used in it?

+2


a source to share


1 answer


Semi-colon is an SQL expression terminator. You should also terminate one statement, although most parsers do not require this. More information here .



+1


a source







All Articles