Download this file
23 lines (20 with data), 386 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 | /**
* <strong>字段名称, 数据类型</stong>
* <p>
*
* </p>
*
* @author: 汉娱网络.技术部.yangxf
* @date: 2008-01-02
* @version: 0.1
**/
package com.handjoys.fastdb;
public class ColumnMetaData {
public String columnName;
// 定义见java.sql.Types
public int columnType;
public ColumnMetaData(String name, int type) {
columnName=name;
columnType=type;
}
}
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.