- 浏览: 4659 次
最新评论
-
chenm_bj:
高手,能有适用多种数据库的方法吗? 如获得表字段的描述信息集合 ...
获取数据库用户表格信息
文章列表
package com.augurit.codebulder.builder.bean;
public class Field {
private String fieldName; //字段名
private int fieldType; //字段类型(整数表示)
private boolean key; //是否主键
private boolean empty; //是否可以为空
private String typeName; //字段类型(sql类型)
private int size; //字段长度
private int p ...
package com.augurit.codebulder.builder.bpo.imp;
import com.augurit.codebulder.util.db.imp.ConnectionManagerImpl;
import java.sql.Connection;
import java.util.*;
import java.sql.*;
import com.augurit.codebulder.builder.bean.Field;
import com.augurit.codebulder.builder.bpo.inf.InfGetDBData;
public c ...
select t.*, t.rowid from hzsz_biz_all t where t.applyid='2007-10226'
--@select t.*, t.rowid from app_dig_chargenotify t where t.applyid ='2007-10226'
--@select * from app_dig_chargenotify t where t.applyid = '2007-10226'
select * from app_dig_idea t where t.applyid = '2007-10226'
--@select * from ...
- 2007-11-27 09:36
- 浏览 786
- 评论(0)