Code for calling a function in a package from C# and ODP.NET
问题 I've tried to write C# code with ODP.NET to call a function in a package. I'm getting the two errors below: ORA-06550: line 1, column 7: PLS-00306: wrong number or types of arguments in call to INSERT_FUNC' ORA-06550: line 1, column 7: PL/SQL: Statement ignored ORA-06550: line 1, column 7: PLS-00221: 'INSERT_FUNC' is not a procedure or is undefined ORA-06550: line 1, column 7: PL/SQL: Statement ignored My OracleCommand is set up as: cmd.CommandText = "PKG_NAME.INSERT_FUNC"; cmd.CommandType =