`
left405
  • 浏览: 6261 次
  • 性别: Icon_minigender_1
  • 来自: 上海
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
组合索引(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更加合适。线程局部变 ...
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
一.jdbc 连接的配置项    1.dialect    2.driver_class    3.url    4.username    5.password 二.JNDI连接    1.datasourse    2.username    3.password    4.dialect
Global site tag (gtag.js) - Google Analytics