ORMLite簡單使用說明

2021-06-27 12:20:32 字數 928 閱讀 6802

最近學習了ormlite資料庫框架,將我了解到的一些簡單使用方法記下來。

使用前你需要自己定義乙個dbhelper類繼承ormlitesqliteopenhelper。裡面要新增乙個無參建構函式和重寫裡面的oncreate方法。如下:

public class dbhelper extends ormlitesqliteopenhelper

@override

public void oncreate(sqlitedatabase arg0, connectionsource arg1) catch (sqlexception e)

} @override

public void onupgrade(sqlitedatabase arg0, connectionsource arg1, int arg2,

int arg3)

oncreate中加入需要建立的表的語句。book,student,bstudent是我自己寫的例項物件。如果想要建表的話需要自己在構建的物件上新增注釋。book表如下:

@databasetable(tablename = "book")

public class book catch (sqlexception e)

}

查詢語句中可以利用where,and,or等方法進行精細查尋:bookd

ao.querybuilder().orderby(

"id"

, true

).where().eq(

"book_name"

,value).and().eq(

"book_name"

, value1)

.query();

這些只是表面簡單操作,深入使用有待後續研究學習。

ormlite測試demo

Git 簡單使用說明

mkdir project 建立專案目錄 cd project 進入專案目錄 git init 初始化 git 本地倉庫。此命令會在當前目錄新建乙個 git 目錄,用於儲存 git 倉庫的相關資訊。touch readme 建立readme檔案好習慣 git add 將當前目錄新增到 git 倉庫中...

MPI簡單使用說明

1.程式最開始需呼叫mpi庫 include mpif.h 2.進入mpi工作環境需先輸入下面三個命令 mpi init ierr 初始化mpi工作環境 mpi comm rank mpi comm world,myid,ierr myid 程序號 mpi comm size mpi comm wo...

Datepicker 簡單的使用說明

我現在使用的版本是 jquery ui 1.8.11.custom jquery的版本是 1.5.2 頁面要引入的檔案 頁面中的js部分 上面這段 中,numberofmonths 1 為顯示的月的個數 目前為顯示1個月 from datepicker option dateformat yy mm...