SqliteGen 是一个为 Android 开发人员准备的 Eclipse 插件,用来自动生成 SQLite 数据库的访问类,使用 Annotation 方式。示例代码:
package android.androidVNC;
import com.antlersoft.android.db.*;
@TableInterface(ImplementingClassName="AbstractConnectionBean",
TableName="CONNECTION_BEAN")
interface IConnectionBean {
@FieldAccessor
long get_Id();
@FieldAccessor
String getNickname();
@FieldAccessor
String getAddress();
@FieldAccessor
int getPort();
@FieldAccessor
String getPassword();
@FieldAccessor
String getColorModel();
@FieldAccessor
boolean getForceFull();
@FieldAccessor
String getRepeaterId();
}
<标签 vnc客户端> SqliteGen 是一个为 Android 开发人员准备的 Eclipse 插件,用来自动生成 SQLite 数据库的访问类,使用 Annotation 方式。 项目主页:http://code.google.com/p/sqlitegen/ 项目下载地址:http://code.google.com/p/sqlitegen/downloads/list 在项目主页,说明
Installation You will need to download 2 files to use the plugin. sqlitegen_eclipse_site_xxx.jar is a file containing an Eclipse plugin installation site in jar form. Download this file and configure