- 连接池
-
jsp中的数据库编程
一,sql复习 1,sql语句分为两类:ddl(data definition language)和dml(dat manipulation languge,数据操作语言)。前者主要是定义数据逻辑结构,包括定义表、视图和索引;dml主要是对数据库进行查询和更新操作。 2,create table(ddl): create table tabname( colname1 coltype1 [else], colname2 coltype2 [else], ..., colnamen coltypen [else] );...
连接池管理的代码
the detail pool management code dbconnectionmanager.java package com.coa.cim.database; /** * title: cim system * description: the customer infomation managment system * copyright: copyright (c) 2002 * company: coa sci&tech * @author mula liu * @versi...