`
文章列表
详细进入:http://www.redsaga.com/spring_ref/2.5/html/resources.html  
W2JJW-4KYDP-2YMKW-FX36H-QYVD8
普通标签的单选按钮,如果要设置默认选中就要使用checked属性 例: <input type="radio" name="sex" value="1"  checked /> 而struts1中<html:radio/>中没有对应的checked属性。 例: <html:radio property= "userSex" value= "1"/>男 <html:radio property= "userSex" value ...

Oracle自动增长

1.创建表    create table userInfo  (     userId number(5) primary key ,     userName varchar2(20)   ); 2.创建序列   create sequence seq_user   nocache; 3.创建触发器   create or replace trigger user_tg   before insert on userInfo   for each row   declare     --local variables here   begin     s ...
Oracle 和 Mysql 的一些简单命令对比参照   Oracle mysql 默认安装目录 D:\ORAWIN95 C:\MYSQL 各种实用程序所在目录 D:\ORAWIN95\BIN C:\MYSQL\BIN 控制台工具 SVRMGR.EXESVRMGR23.EXE mysqladmin.exe 数据库启动程序 0start73.exe screen mysqld-shareware.exe 关闭数据库命令 ostop73.exe mysqladmin.exe -u root shutdown 客户程序 ...
Oracle的数据类型表 数据类型 说明 最大长度   number(p,s) 变长数字类型 Precision(精度):1~38 Scale:-84~127   decimal(p,s) 数字类型 Precision(精度):1~38 Scale:-84~127   integer 整数类型 小的整数   float 浮点数据类型 number(38)双精度   real 实数类型 number(63)精度更高   date 固定长度的日期和时间域,从公元前4712年1月1日 到4712 ...
Global site tag (gtag.js) - Google Analytics