<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>深蓝的blog &#187; SQLite</title>
	<atom:link href="http://www.lanxinbase.com/?feed=rss2&#038;tag=sqlite" rel="self" type="application/rss+xml" />
	<link>http://www.lanxinbase.com</link>
	<description>记录日常生活</description>
	<lastBuildDate>Sat, 07 Feb 2026 10:59:52 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.2.3</generator>
	<item>
		<title>Android开发之SQLite(手机记账App)</title>
		<link>http://www.lanxinbase.com/?p=1023</link>
		<comments>http://www.lanxinbase.com/?p=1023#comments</comments>
		<pubDate>Mon, 16 May 2016 06:53:12 +0000</pubDate>
		<dc:creator><![CDATA[Alan]]></dc:creator>
				<category><![CDATA[7.android应用开发]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://www.lanxinbase.com/?p=1023</guid>
		<description><![CDATA[MainActivity.class 源码片段

private static final String TAG = "SQLiteLOG";
private MenuSelect menuSelect;
public int _id;
private Button but_save,but_update,but_delete;
private EditText name,money,remark;


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);

    fab.setVisibility(0);

    fab.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                    .setAction("Action", null).show();
        }
    });

    name = (EditText)findViewById(R.id.item_name);
    money = (EditText)findViewById(R.id.item_money);
    remark = (EditText)findViewById(R.id.item_remark);

    Bundle bundle = getIntent().getExtras();
    if(bundle != null){
        _id = Integer.valueOf(bundle.getString("id"));
        name.setText(bundle.getString("name"));
        money.setText(bundle.getString("money"));
        remark.setText(bundle.getString("remark"));

    }
    init(this);


}
]]></description>
		<wfw:commentRss>http://www.lanxinbase.com/?feed=rss2&#038;p=1023</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android 开发SQLiteDatabase操作类</title>
		<link>http://www.lanxinbase.com/?p=1021</link>
		<comments>http://www.lanxinbase.com/?p=1021#comments</comments>
		<pubDate>Mon, 16 May 2016 06:28:35 +0000</pubDate>
		<dc:creator><![CDATA[Alan]]></dc:creator>
				<category><![CDATA[7.android应用开发]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[SQLite]]></category>
		<category><![CDATA[SQLiteDatabase]]></category>
		<category><![CDATA[SQLiteOpenHelper]]></category>

		<guid isPermaLink="false">http://www.lanxinbase.com/?p=1021</guid>
		<description><![CDATA[以上的代码是SQLite操作类的源代码，实现的方法很简单：

1.新增DBHelper类，继承SQLiteOpenHelper，并且实现onCreate跟onUpgrade方法。

2.新增DBbridge类，用来实现数据库的增、删、改、查等4个方法。]]></description>
		<wfw:commentRss>http://www.lanxinbase.com/?feed=rss2&#038;p=1021</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLite的使用</title>
		<link>http://www.lanxinbase.com/?p=270</link>
		<comments>http://www.lanxinbase.com/?p=270#comments</comments>
		<pubDate>Mon, 03 Aug 2015 05:13:57 +0000</pubDate>
		<dc:creator><![CDATA[Alan]]></dc:creator>
				<category><![CDATA[3.数据库相关]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://blog.lanxinbase.com/?p=270</guid>
		<description><![CDATA[ 1、从官网下载SQLite（http://www.sqlite.org/download.html）安装后（Mac自带SQLite，也可直接运行下面的命令），打开终端更改目录到sqlite3文件所在的目录，输入如下命令便可以创建一个数据库，如果该数据库已存在将打开：]]></description>
		<wfw:commentRss>http://www.lanxinbase.com/?feed=rss2&#038;p=270</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
