DECLARE
l_rec_profile_t hz_customer_profile_v2pub.customer_profile_rec_type;
l_rec_profile hz_customer_profile_v2pub.cust_profile_amt_rec_type;
l_profile_amt_id NUMBER;
l_profile_id...
分类:
其他好文 时间:
2014-10-30 19:17:23
阅读次数:
259
EL表达式的使用(5个 问题)
JSTL标签的使用(5个问题)
什么是EL,它能做什么用的?
EL全名为Expression Language在JSP页面使用
格式${一个表达式}
例子${requestScope.customer.id}
功能:
1.才四个域对象中取出属性数据显示
(pageContext.request.session.application)
...
分类:
Web程序 时间:
2014-10-26 14:25:19
阅读次数:
269
(1) $all查询:用于查询数组,匹配数组中的元素,要全部匹配才能有结果:示例: 现在我如果写成这个样子:db.customer.find({"books":{"$all":["java", "jQuery"]}}),那么是查不出结果的,因为 在document中匹配不到结果,只有将["ja...
分类:
数据库 时间:
2014-10-25 20:07:32
阅读次数:
288
对象关系映射的开始:class元素表示类和数据库中的表的映射关系。
name属性指定持久化类(或者接口)的Java全限定名;
table属性指定要映射的对应的数据库表名,如果省略,则以name作为表名
-->
com.hibernate.customer.customer" table="customer">
...
分类:
移动开发 时间:
2014-10-24 18:59:32
阅读次数:
280
select uppagent.agent_no AGENT_NO, ISNULL(countsubagent,0) REFERRAL_AGENT_NUM, ISNULL(countsubcustomer,0) CUSTOMER_NUMfrom AGENT_CORRELATION uppagent ...
分类:
数据库 时间:
2014-10-24 12:29:45
阅读次数:
239
呼叫中心(Call Center)例如:公司服务系统,10086,110相关技术:计算机与电信集成技术(CTI Computer telecommunication integration)拓展技术简写:办公自动化OA(office Automation),客户关系管理CRM(Customer Re...
分类:
其他好文 时间:
2014-10-23 22:15:34
阅读次数:
417
use master
drop table customer
create table customer(
id int primary key,
account decimal check(account>0),
name varchar(20)
)
--use master
alter table dbo.customer
add check(customer.account...
分类:
数据库 时间:
2014-10-23 16:18:44
阅读次数:
240
1 drop table orders; 2 create table orders ( 3 o_id int auto_increment primary key, 4 orderdate date, 5 orderprice int, 6 customer varchar(100) 7 ); ....
分类:
其他好文 时间:
2014-10-22 12:28:08
阅读次数:
244
产品描述页默认有产品详细情况及让客户增加产品标签这二个tabs,要做到淘宝那样显示客户评价,我找到以下方法增加一个客户评价tab:1. 打开模版路径 layout 目录下的 review.xml 文件, 在页面最下的之上,添加如下代码: reviews Product's Review rev...
分类:
其他好文 时间:
2014-10-18 15:13:19
阅读次数:
190
一、如何定义关联
两个model之间常常会存在关联关系,为了解决这些关联引起的复杂操作问题,可以在model定义时定义其关联关系。如:实体customers和orders定义如下:
class
Customer
has_many
:orders, dependent:
:destroy
end
class
Order...
分类:
其他好文 时间:
2014-10-16 14:55:32
阅读次数:
152