07 2015 档案

摘要:1、安装Navicat Premium2、打开注册机(若注册机无法打开,右击-显示简介-选中以32位模式打开)3、(默认选择)点击Generate获取激活码4、点击Activata,弹出选择程序的窗口,选择Navicat Premium,操作系统支持10.10(本人系统就是yosimite 10.1... 阅读全文
posted @ 2015-07-12 16:59 M-li 阅读(1539) 评论(0) 推荐(0)
摘要:--创建表create table abc(id number(4) not null primary key,username varchar2(20) not null,pwd varchar2(20) not null);--创建序列create sequence abc_sequence ... 阅读全文
posted @ 2015-07-08 16:38 M-li 阅读(151) 评论(0) 推荐(0)
摘要:http://www.2cto.com/os/201209/157202.html 阅读全文
posted @ 2015-07-06 11:10 M-li 阅读(185) 评论(0) 推荐(0)
摘要:参考:http://jingyan.baidu.com/article/c843ea0b96f01877931e4a1d.htmlhttp://jingyan.baidu.com/article/48a42057e2b2b9a9242504a2.html-----------------------... 阅读全文
posted @ 2015-07-06 10:27 M-li 阅读(167) 评论(0) 推荐(0)
摘要:mac上,一开始系统进入创建的用户是具有管理员权限的用户,但是那个密码,却不是进入root的密码,当运行su - 这个命令时,想进入root用户,发现需要输入密码,而输入自己用户密码后报su :sorry,经验证发现,使用sudo su -命令可以进入root用户,不需要输入密码,或者先输入sudo... 阅读全文
posted @ 2015-07-01 20:06 M-li 阅读(598) 评论(0) 推荐(0)
摘要:Document全选/全不选 阅读全文
posted @ 2015-07-01 09:09 M-li 阅读(266) 评论(0) 推荐(0)
摘要:用注解来向Spring容器注册Bean。需要在applicationContext.xml中注册:1:@Repository 标注在持久层,即dao,用于标注数据访问。2:@Service 标注在业务层,即service,用于标注业务逻辑。3:@Controller 标注在控制层。4:@Compon... 阅读全文
posted @ 2015-07-01 09:04 M-li 阅读(149) 评论(0) 推荐(0)