摘要: 1、判断文件是否存在,不存在创建文件Filefile=newFile("C:\\Users\\QPING\\Desktop\\JavaScript\\2.htm");if(!file.exists()){try{file.createNewFile();}catch(IOExceptione){//... 阅读全文
posted @ 2015-03-11 09:53 我有巧乐兹 阅读(349) 评论(0) 推荐(0)
摘要: oracle不能实现字段数值的自增长。可以通过序列和触发器来实现一行数据在insert前实现某字段的自增。首先随便建立一个表,menuId是需要自增的字段 create table menu( menuId number(10) not null primary key, name varchar2(40) not null, id_parent number(10) not null, ... 阅读全文
posted @ 2014-04-04 16:59 我有巧乐兹 阅读(193) 评论(0) 推荐(0)