Records for semicolon & licenses in oracle excute

not set semicolon in the end, error: ORA-00911: invalid character

add licenses.licx  for devart, platform must x86 , if use any cpu, the oci.dll path will very strange

 

some code for  call procedure

 using (OracleConnection connection = new OracleConnection(connectionString))
        {
            OracleCommand command = new OracleCommand(queryString);
            command.Connection = connection;
            try
            {
                connection.Open();
                command.CommandType = System.Data.CommandType.StoredProcedure;
                command.ExecuteNonQuery();
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }

posted on 2012-02-09 17:02  子虚乌有  阅读(305)  评论(0)    收藏  举报