|
|||
a little bit of tech, a little bit of green, to help tame the savage techmachine. |
2004年10月7日
摘要:
rem ///BY MAXUAN 开始///create table item(type_id integer not null,type varchar2(30),constraint item_pk primary key(type_id)); create table product(product_id integer not null,title varchar2(30) not nul... 阅读全文
2004年10月6日
摘要:
jsp执行oracle存储过程/*执行一条insert语句并传参数*/create or replace procedure p_test2(i in number) asbegininsert into t values (i,'x'||to_char(i));commit;end;/aaabbb" + rs.getString(1) + "" + rs.getString(2) + ""); ... 阅读全文
摘要:
jsp设计模式一:介绍 记得初学jsp的时候,总喜欢把他和asp,php去比较,也习惯于使用asp的开发模式去写jsp,后来才发现这真是很傻的做法,其实jsp一出了来就已经用MVC模式了。下面我就简要说说jsp设计使用MVC来设计。二:MVC介绍 MVC其实是模、视图、控制的缩写,也就是说在使用jsp时,有相应的文件去实现相应的操作。通常jsp只负责view也就是只负责显示页面。业务逻... 阅读全文
摘要:
Oracle经验技巧集 1.删除表空间 DROP TABLESPACE TableSpaceName [INCLUDING CONTENTS [AND DATAFILES]] 2.删除用户 DROP USER User_Name CASCADE 3.删除表的注意事项 在删除一个表中的全部数据时,须使用TRUNCATE TABLE 表名;因为用DROP TABLE,DE... 阅读全文
摘要:
笔者在工作中有一上百万条记录的表,在jsp页面中需对该表进行分页显示, 便考虑用rownum来作,下面是具体方法(每页显示20条): http://www.acnow.net/ JVL9l5"select * from tabname where rownum<20 order by name" 但却发现oracle却不能按自己的意愿来执行,而是先随便20条记录,然后再 order by,后经咨... 阅读全文
|
Copyright © 2024 xyublog
Powered by .NET 9.0 on Kubernetes |