现在的位置: 首页 > 数据库 > 正文

Android小记之SQLite的insert方法参数说明

2019年06月09日 数据库 ⁄ 共 2525字 ⁄ 字号 评论关闭

看到一个API的参数不懂的时候,我们会做什么呢!Baidu,Google。很少回去看源码的吧,我也是,太懒了,批评一下。啪啪~

先看一段创建数据库的代码吧。

    

db.execSQL("CREATE TABLE users (" + "_id INTEGER PRIMARY KEY, " + "username TEXT, " + "realname TEXT, "
				+ "nsid TEXT, " + "buddy_icon BLOB," + "last_update INTEGER);");

我们能看到其中有一个类型是我们不常用的,BLOB,学过数据库的人肯定都知道了,但是我还是要说一下,这个表示的是二进制数据类型,比如我们可以将一个图片的数据存入其中,当然小图可以,大图就算了嘛。for example:

addUser(db, "Bob Lee", "Bob Lee", "45701389@N00", R.drawable.boblee_buddyicon);

private void addUser(SQLiteDatabase db, String userName, String realName, String nsid, int icon) {

		final ContentValues values = new ContentValues();
		values.put(COLUMN_USERNAME, userName);
		values.put(COLUMN_REALNAME, realName);
		values.put(COLUMN_NSID, nsid);
		values.put(COLUMN_LAST_UPDATE, System.currentTimeMillis());

		final Bitmap bitmap = BitmapFactory.decodeResource(mContext.getResources(), icon);
		writeBitmap(values, COLUMN_BUDDY_ICON, bitmap);

		db.insert(TABLE_USERS, COLUMN_LAST_UPDATE, values);
	}

	static void writeBitmap(ContentValues values, String name, Bitmap bitmap) {
		if (bitmap != null) {
			// Try go guesstimate how much space the icon will take when
			// serialized
			// to avoid unnecessary allocations/copies during the write.
			int size = bitmap.getWidth() * bitmap.getHeight() * 2;
			ByteArrayOutputStream out = new ByteArrayOutputStream(size);
			try {
				bitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
				out.flush();
				out.close();

				values.put(name, out.toByteArray());
			} catch (IOException e) {
				// Ignore
			}
		}
	}

好了,闲话不多说了,今天要说的重点是其中的:

db.insert(TABLE_USERS, COLUMN_LAST_UPDATE, values);

参数问题,这里贴一下API说明:

public long insert (String table, String nullColumnHack, ContentValues values)

Added in API level 1
Convenience method for inserting a row into the database.

Parameters
table	the table to insert the row into
nullColumnHack	optional; may be null. SQL doesn't allow inserting a completely empty row without naming at least one column name. If your provided values is empty, no column names are known and an empty row can't be inserted. If not set to null, the nullColumnHack parameter provides the name of nullable column name to explicitly insert a NULL into in the case where your values is empty.
values	this map contains the initial column values for the row. The keys should be the column names and the values the column values
Returns
the row ID of the newly inserted row, or -1 if an error occurred

好吧,我相信英文不好的同学肯定会与我一样,对第二个参数的说明还是有点糊涂的,行吧,那就Baidu,有道orGoogle翻译,不过这些终究是翻译工具,只能让你有个一知半解,最终还是需要实践才能得出最终答案的。

这里感谢下这位作者的辛勤付出:android之SQLite数据库应用(二) -> http://blog.csdn.net/chenzheng_java/article/details/6226572

这里用国语详细解释下这三个参数的意义:

table:数据的表的名称
nullColumnHack:当values参数为空或者里面没有内容的时候,我们insert是会失败的(底层数据库不允许插入一个空行),
为了防止这种情况,我们要在这里指定一个列名,到时候如果发现将要插入的行为空行时,就会将你指定的这个列名的值设为null,然后再向数据库中插入。
values:ContentValues对象,差不多就是一个map.通过键值对的形式存储值,键表示的是Column,值就是对应Column的值咯。

好了,对大家有帮助了吧,嘿嘿。

抱歉!评论已关闭.