⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 datatype.java

📁 JDBC Book Code Examples
💻 JAVA
字号:
public class DataType {	private int code;	private String SQLType;	private String localType = null;	private String params = null;	private boolean needsSetting = true; 		public DataType(int code, String SQLType) {		this.code = code;		this.SQLType = SQLType;		}		public boolean needsToBeSet() {		return needsSetting;	}		public int getCode() {		return code;	}		public String getSQLType() {		return SQLType;	}		public String getLocalType() {		return localType;	}		public String getParams() {		return params;	}		public void setLocalTypeAndParams(String local, String p) {		if (needsSetting) {			localType = local;			params = p;			needsSetting = false;		}	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -