赞
踩
public static final String CREATE_LIBRARY = "create table book (" + "id integer primary key autoincrement," + "name text," + "kind text," + "author text," + "pages text," + "price text," + "num text)"; public static final String CREATE_USERS = "create table users (" + "id integer primary key autoincrement," + "user_name text," + "user_code text," + "avatar BLOB)"; public static final String CREATE_ORDER = "create table orders(" + "id integer primary key autoincrement," + "user_name text," + "name text," + "num text," + "status text," + "time text)";
点击获取
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。