ContentValues

ContentValues

This class is used to store a set of values that the ContentResolver can process.

用于保存一些数据(string boolean byte double float int long short ...)信息,这些信息可以被数据库操作时使用。

ContentValues() Creates an empty set of values using the default initial size

ContentValues(int size) Creates an empty set of values using the given initial size

ContentValues(ContentValues from) Creates a set of values copied from the given set

ContentValues 和HashTable

ContentValues 和HashTable类似都是一种存储的机制,存储一些明名值对,名都是string类型,但是两者最大的区别就在于值,contenvalues只能存储基本类型的数据,像string,int之类的,不能存储对象这种东西,而HashTable却可以存储对象。

在往数据库中插入数据的时候,首先应该有一个ContentValues的对象所以:

ContentValues initialValues = new ContentValues();

initialValues.put(key,values);

SQLiteDataBase sdb ;

sdb.insert(database_name,null,initialValues);

插入成功就返回记录的id否则返回-1;

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值