DBViewer Pluginのインストール

DBViewer Pluginのインストール

eclipseから直接インストール

Eclipseのメニューの[ヘルプ]-[新規ソフトウェアのインストール]を選択。

「インストールというダイアログが表示されるので、作業対象の右にある「追加」ボタンを押下。

リポジトリの追加画面が表示されます。
名前に「DBViewer UpdateSite」
ロケーションに「http://www.ne.jp/asahi/zigen/home/plugin/dbviewer/
と入力してOK。

DBViewer Plugin for Eclipseのインストール
http://symfoware.blog68.fc2.com/blog-entry-808.html


■DBViewerのプラグインを落として来て、インストール
DBViewer Plugin for Eclipse 開発プロジェクト
http://www.ne.jp/asahi/zigen/home/plugin/dbviewer/about_jp.html

Java DB (Derby) 上で,Eclipse の DBViewer プラグインを使う
http://www.db.is.kyushu-u.ac.jp/rinkou/javadbinstall/javadbdbviewer.html

Eclipse の DBViewer プラグイン
http://www.db.is.kyushu-u.ac.jp/rinkou/javaintro/dbviewer.html

データベースの利用に便利なEclipseプラグイン
http://www.atmarkit.co.jp/fjava/rensai3/eclipseplgn09/eclipseplgn09_3.html

SQLite実装

AndroidSQLiteのDB操作をするための基礎知識
http://www.atmarkit.co.jp/fsmart/articles/android06/android06_1.html

Androidアプリのデータ保存方法の一つ「SQLite」の使い方 レコード検索編
http://android.roof-balcony.com/shori/strage/select/

Androidアプリのデータ保存方法の一つ「SQLite」の使い方 行の追加・更新・削除編
http://android.roof-balcony.com/shori/strage/insert/

Bluetoothで通信を行う(2)

Bluetoothで通信を行う(2)
http://techbooster.jpn.org/andriod/device/5535/

接続履歴の有無を判断する際に使用するgetBondState()メソッドは、検出されたデバイスの接続状態を取得します。接続状態は次の3つが存在します。

BluetoothDevice.BOND_BONDING
バイスは接続中
BluetoothDevice.BOND_BONDED
バイスは接続履歴あり
BluetoothDevice.BOND_NONE
バイスは接続履歴なし
今回はBOND_BONDEDを用いて、接続履歴の有無を判断しています。