该文被密码保护。 阅读全文
posted @ 2017-05-02 17:30 温柔牛 阅读(1) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2017-05-02 15:17 温柔牛 阅读(0) 评论(0) 推荐(0)
摘要: 在删除表1的某条记录之后,删除表2与之相关的数据 CREATE OR REPLACE TRIGGER tr_del AFTER DELETE ON 表1 REFERENCING OLD AS "OLD" NEW AS "NEW" FOR EACH ROW ENABLE BEGIN delete fr 阅读全文
posted @ 2017-05-02 11:51 温柔牛 阅读(103) 评论(0) 推荐(0)
摘要: UML学习: http://www.cnblogs.com/SceneryHao/p/5355915.html 画类图:实现代理 http://www.cnblogs.com/ejiyuan/archive/2012/07/24/2606129.html 阅读全文
posted @ 2017-04-19 15:13 温柔牛 阅读(271) 评论(0) 推荐(0)
摘要: --1单击工具/扩展和更新 阅读全文
posted @ 2017-03-31 11:58 温柔牛 阅读(95) 评论(0) 推荐(0)
摘要: 路径:D:\**\VS2013\Common7\IDE\ItemTemplatesCache\CSharp\Code\2052\Class 1、在visual studio 2013的安装路径下找到“D:\**\VS2013\Common7\IDE\ItemTemplatesCache\CSharp 阅读全文
posted @ 2017-03-23 11:37 温柔牛 阅读(585) 评论(0) 推荐(0)
摘要: --创建类型 CREATE OR REPLACE TYPE picid_rowtype as object(in_picid nvarchar2(50),in_order number) CREATE OR REPLACE TYPE picid_tabletype as table of picid 阅读全文
posted @ 2017-03-20 15:38 温柔牛 阅读(225) 评论(0) 推荐(0)
摘要: sqlplus 进入 :sqlplus /nolog conn system/a@orcl148 如何确定数据库的servicename: 查看所有的数据库文件的存放位置 sqlplus / as sysdbaSQL>select name from v$datafile; 阅读全文
posted @ 2017-03-14 14:49 温柔牛 阅读(227) 评论(0) 推荐(0)
摘要: public partial class Tree : Form { public Tree() { InitializeComponent(); } private void Tree_Load(object sender, EventArgs e) { string path = @"d:\a\ 阅读全文
posted @ 2016-12-16 13:21 温柔牛 阅读(1121) 评论(0) 推荐(0)
摘要: namespace _03{ class Program { public static void Main() { Person person = new Person(); IEnumerator ienu= person.GetEnumerator(); while (ienu.MoveNex 阅读全文
posted @ 2016-12-15 10:39 温柔牛 阅读(212) 评论(0) 推荐(0)