新文章 网摘 文章 随笔 日记

04 2023 档案

摘要:在开发过程中碰到了一个需求,需要动态创建对象及其动态属性。在尝试几种方法后,最后完成了需求,记录下过程,给园友参考下 1.动态创建对象一:匿名对象 object obj1 = new {Name = "金朝钱",Age="",Birthday =DateTime.Now}; 创建的匿名对象: 问题1 阅读全文
posted @ 2023-04-28 13:24 岭南春 阅读(795) 评论(0) 推荐(0)
摘要:select sess.sid,sess.serial#,lo.oracle_username,lo.os_user_name,ao.object_name,lo.locked_modefrom v$locked_object lo,dba_objects ao,v$session sess whe 阅读全文
posted @ 2023-04-28 10:44 岭南春 阅读(21) 评论(0) 推荐(0)
摘要:using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Runtime.InteropServices; using System.Window 阅读全文
posted @ 2023-04-26 15:10 岭南春 阅读(33) 评论(0) 推荐(0)
摘要:尝试重新注册ASP.NET aspnet_regiis -i.它对我有用. .NET 4的可能路径(来自提升的命令提示符): c:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i http://forums.iis.ne 阅读全文
posted @ 2023-04-21 16:11 岭南春 阅读(108) 评论(0) 推荐(0)
摘要:create or replace PROCEDURE PC_TEST_001 IS /************************************************ 存储过程执行动态sql范例 ******************************************* 阅读全文
posted @ 2023-04-12 10:15 岭南春 阅读(50) 评论(0) 推荐(0)
摘要:文章转自: https://blog.csdn.net/poyue8754/article/details/121184971 目的 本教程介绍如何使用 Oracle SQL Developer 创建、运行以及调试 PL/SQL 过程。 概述 Oracle SQL Developer 是一个免费的图 阅读全文
posted @ 2023-04-11 19:54 岭南春 阅读(680) 评论(0) 推荐(0)