- 浏览: 44821 次
- 性别:
- 来自: 上海
最新评论
-
map521:
很详细,讲的很明白了,感谢楼主的无私。
Spring中集成Quartz的简单配置 -
化蝶自在飞:
留记号,正在用,谢谢
ECShop 2.7.2 邮件服务器设置及“Access is denied”的解决方法 -
mefly:
目前看没什么错,我在用你的,谢谢
jQuery Validate 扩展IP校验 -
xplazy:
buaawhl 写道weiweichen1985 写道无论你需 ...
-
xplazy:
weiweichen1985 写道值得高兴的是,无论你需要什么 ...
文章列表
Subversion & TortoiseSVN: Installed and started on Windows 2003 server and local machines
Subversion 使用介绍
Introduction
In this article I will walk
through the process of installing Subversion and getting started using
this very useful version control tool. I chose Subversion based on its
ease ...
- 2008-07-07 11:08
- 浏览 1497
- 评论(0)
Spring中对Quartz做了更上层的封装,便于开发者更简单的使用Quartz。在Spring的xml文件里配一下时间就可以自动执行,不需要写一行代码。
参考代码:
<bean id="methodInvokingJobDetail"
class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
<property name="targetObject">
<ref bean=" ...
- 2008-07-03 09:05
- 浏览 1217
- 评论(1)
Mysql导入Dump数据文件
mysql -u root databaseName<data.dump
databaseName.数据要导入进去的数据库名。
data.dump 要导入的dump数据文件。需要包括数据文件的path信息。
还可以将结果保存到文件中,然后将文件转移到目标机器上并将文件装载到数据库中。例如,可以在源机器上使用下面的命令将数据库备份到文件中:
mysqldump -uroot -p --quick ocn >ocn.sql
shell>
mysqldump --quick db_name
| gzip > db_ ...
GROUP
BY(聚合)函数
本章论述了用于一组数值操作的 group (
集合)
函数。除非另作说明,
group
函数会忽略 NULL
值。
假如你在一个不包含 ROUP BY
子句的语句中使用一个 group
函数
,它相当于对所有行进行分组。
AVG([DI ...
- 2008-06-20 14:50
- 浏览 4245
- 评论(0)
OOP in JS, Part 1 : Public/Private Variables and Methods
This page shows how to create private variables and methods in
classes in Javascript through the rather simple example of a person. Part 2
covers inheritance.
Summary
private variables
are declared with the 'var' keyword inside the object, ...
- 2006-12-07 18:33
- 浏览 1039
- 评论(0)
本文使用Hibernate3.2 cr2
1.直接返回List结果集,不包括列名信息
List ls = session.createSQLQuery(querySql).list();
如果当前查询SQL里包括多列,则List里每行存放的是Object数组,如果直接查询的是一列,则每行存放的则直接就是查询的哪一列的数据。
也可以在返回的结果数据里指定每一列的类型
List ls2 = session.createSQLQuery(querySql).addScalar("column_name", Hibernate.DATE).list();
这样返回的数据的时候 ...
- 2006-09-20 18:23
- 浏览 1346
- 评论(0)