代码搜索:DAY
找到约 10,000 项符合「DAY」的源代码
代码结果 10,000
www.eeworm.com/read/331041/12854533
vcb the time of day.vcb
www.eeworm.com/read/140814/13060568
txt day09.txt
1, 创建表:
create table orderstatus(
statusid integer primary key,
name varchar2(32),
description varchar2(64)
);
insert into orderstatus values(1, 'pending',
www.eeworm.com/read/140814/13060574
txt day12.txt
=========================================================
1, 为 ShoppingSessionFacade 添加 商业方法:
method name : modifyShipmentStatus
return type : void
input parameter : Integer
www.eeworm.com/read/140814/13060600
txt day10.txt
1,在dto表中创建PaywayDTO
package dto;
import java.io.Serializable;
public class PaywayDTO implements Serializable{
private Integer paywayId;
private String payStyle;
public PaywayDTO() {
www.eeworm.com/read/140814/13060603
txt day02.txt
为struts配置资源文件
a) 在工程中,新建package ec_port_web ,用于存放struts相关的
类。
b) 在ec_port_web中新建资源文件
new --> file
填写: name : ApplicationResource ,
type : properties ,
c) 编辑Applic
www.eeworm.com/read/140814/13060619
txt day01.txt
准备开发环境
开发工具: JBuilder 9
数据库 : Pointbase
中间件 : Weblogic 8.x
1,创建数据库:ec_port
2,建表:
create table admin(
userid varchar2(30) primary key ,
www.eeworm.com/read/140814/13060626
txt day06.txt
*** 为产品管理添加修改,删除和按照类别查询的功能 ***
1,为ProductMgmSessionFacadeEJB 添加4个方法:
a) method name : getProductByCategory
return type : java.util.Collection
input parameter : String c
www.eeworm.com/read/140814/13060633
txt day11.txt
建表:
create table shipmentstatus(
statusid integer primary key,
name varchar2(32) not null
);
insert into shipmentstatus values(1, 'preparing');
insert into shipmentstatus values(2, '
www.eeworm.com/read/140814/13060641
txt day08.txt
========== 为index.jsp 添加购物功能 =============
1, 在dto中创建 OrderLine 类
package dto;
import dto.ProductDTO;
import java.io.Serializable;
public class OrderLine implements Serializable {
p