When developing an application that uses ODP.NET in DAL, it is very annoying, always setting the property Size OracleParameter. For instance:
getSPTimeCommand.Parameters.Add("pStartTime", OracleDbType.Varchar2, ParameterDirection.Output).size = 200;
Wasn't it so ugly? Thinking of automatically setting the parameter Size OracleParameter, I thought that it affected the performance or memory consumption. What is this influence? What is your installation script Size?
Thanks in advance!
source
share