文章列表
组合索引(concatenated index):由多个列构成的索引,如create index idx_emp on emp(col1, col2, col3, ……),则我们称idx_emp索引为组合索引。在组合索引中有一个重要的概念:引导列(leading column),在上面的例子中,col1列为引导列。当我们进行查询时可以使用”where col1 = ? ”,也可以使用”where col1 = ? and col2 = ?”,这样的限制条件都会使用索引,但是”where col2 = ? ”查询就不会使用该索引。所以限制条件中包含先导列时,该限制条件才会使用该组合索引。
原文地址:http://lavasoft.blog.51cto.com/62575/51926
一、概述
ThreadLocal是什么呢?其实ThreadLocal并非是一个线程的本地实现版本,它并不是一个Thread,而是threadlocalvariable(线程局部变量)。也许把它命名为ThreadLocalVar更加合适。线程局部变 ...
- 2009-08-24 12:05
- 浏览 2091
- 评论(0)
hibernate.c3p0.max_size=2
hibernate.c3p0.min_size=2
hibernate.c3p0.timeout=5000
hibernate.c3p0.max_statements=100
hibernate.c3p0.idle_test_period=3000
hibernate.c3p0.acquire_increment=2
hibernate.c3p0.validate=false
hibernate.connection.provider_class=
org.hibernate.connection.C3P0ConnectionProvider
- 2009-08-10 11:32
- 浏览 1077
- 评论(0)
一.jdbc 连接的配置项
1.dialect
2.driver_class
3.url
4.username
5.password
二.JNDI连接
1.datasourse
2.username
3.password
4.dialect
- 2009-08-10 11:19
- 浏览 930
- 评论(0)