Tagged Questions

0
votes
1answer
184 views

Strange behaviour with a pl/sql query and .net

I run this query to read the count of the Records with an output parameter using OracleCommand: var query = "declare MyCount number; begin SELECT COUNT(*) INTO :MyCount FROM T_ISSUE; end;"; this ...