greendao 處理中文表名、中文字段產生的亂碼問題如何解決?
- 資格考試
- 2023-05-10 07:57:53
android greendao框架中,多表怎么插入數據和關聯(lián)數據
一.下載GreenDao
要使用肯定要先下載他的軟件包了,官網上有它的連接,對于marven和gradle環(huán)境直接到serarch.maven.org上下載jar包就好了。
下載的jar導入到工程里面就可以了,通常都是/libs目錄下。
上面那個下載地址下載解壓后有三個文件如下圖
首先我們要創(chuàng)建javagenerator工程greendao-generator-1.3.0.jar 和 freemarker-2.3.20.jar是我們創(chuàng)建javagenerator工程時生成Dao文件需要用到的(什么是我說的Dao文件,往下看就會知道)
greendao-1.3.7.jar是Android開發(fā)中需要用到的
二.創(chuàng)建generator工程(用來生成GreenDao開發(fā)過程中需要的java文件)
(1)創(chuàng)建Java工程(非Android工程)
(2)導入greenDao-generator.jar和freemarker.jar兩個包。freemarker是一個用java寫的模板引擎,它能夠基于模板來生成文本輸出。應該就是用來自動生成DAO文件的。eclipse下面就是在properties–> Java build path –> libraries下面導入jar包。
(3)創(chuàng)建一個包javagreendao
(4)創(chuàng)建一個類,類名為ExampleDaoGenerator,類的定義如下:
package javagreendao;
import de.greenrobot.daogenerator.DaoGenerator;
import de.greenrobot.daogenerator.Entity;
import de.greenrobot.daogenerator.Property;
import de.greenrobot.daogenerator.Schema;
import de.greenrobot.daogenerator.ToMany;
/**
* Generates entities and DAOs for the example project DaoExample.
*
* Run it as a Java application (not Android).
*
* @author Markus
*/
public class ExampleDaoGenerator
{
//總之main函數就執(zhí)行了下面幾個函數
public static void main(String[] args) throws Exception
{
// 參數3是數據庫版本號,“com.cn.speedchat.greendao”是包名,也就是說生成的Dao文件會在這個包下,可以將Schema理解為數據庫上下文吧
Schema schema = new Schema(3, "com.cn.speedchat.greendao");
//addNote() addSession() addReplay()這三個函數相當于建立了三個表,表名你都可以不用管了會自動生成
addNote(schema);
addSession(schema);
addReplay(schema);
addCustomerOrder(schema);
//這個是生成Dao文件的路徑的位置,這個代表當前工程的上一級目錄的javagreendao的src-gen文件夾里面,其實就是跟src同一級目錄,所以你自己要在src同一級目錄下新建一個src-gen文件夾待會要生成的文件
new DaoGenerator().generateAll(schema, "../javagreendao/src-gen");
}
//這個是一個Note表,然后后面的node.add***是表的字段名以及屬性
private static void addNote(Schema schema)
{
//"MqttChatEntity"相當于是表的類名,用MqttChatEntity生成對象就可以訪問這個表屬性了,也就是這個表對應了這個類,待會使用你就會明白了
Entity note = schema.addEntity("MqttChatEntity");
note.addIdProperty().autoincrement();
note.addIntProperty("mode").notNull();
note.addStringProperty("sessionid").notNull();
note.addStringProperty("from").notNull();
note.addStringProperty("to").notNull();
note.addStringProperty("v_code");
note.addStringProperty("timestamp").notNull();
note.addStringProperty("platform");
note.addStringProperty("message");
note.addBooleanProperty("isread").notNull();
note.addLongProperty("gossipid");
note.addStringProperty("gossip");
note.addIntProperty("chattype").notNull();
note.addStringProperty("imagepath");
note.addStringProperty("base64image");
}
//這個是一個Session表,然后后面的node.add***是表的字段名以及屬性(這是我寫的會話的一個表)
private static void addSession(Schema schema)
{
Entity note = schema.addEntity("SessionEntity");
note.addIdProperty().autoincrement();
note.addStringProperty("sessionid").notNull().unique();
note.addStringProperty("from").notNull();
note.addStringProperty("to").notNull();
note.addLongProperty("gossipid").notNull();
note.addStringProperty("gossip");
note.addIntProperty("sessiontype").notNull();
note.addBooleanProperty("asdasd").notNull();
}
//這個是一個Replay表,然后后面的node.add***是表的字段名以及屬性(這是我寫的回復的一個表)
private static void addReplay(Schema schema)
{
//ReplayEntity對應的類名
Entity note = schema.addEntity("ReplayEntity");
note.addIdProperty().autoincrement();
note.addIntProperty("mode").notNull();
note.addStringProperty("from").notNull();
note.addStringProperty("to").notNull();
note.addStringProperty("v_code");
note.addStringProperty("timestamp").notNull();
note.addStringProperty("platform");
note.addStringProperty("message");
note.addIntProperty("msgtype").notNull();
note.addBooleanProperty("isread").notNull();
}
//這個不用管了,照抄吧
private static void addCustomerOrder(Schema schema)
{
Entity customer = schema.addEntity("Customer");
customer.addIdProperty();
customer.addStringProperty("name").notNull();
Entity order = schema.addEntity("Order");
order.setTableName("ORDERS"); // "ORDER" is a reserved keyword
order.addIdProperty();
Property orderDate = order.addDateProperty("date").getProperty();
Property customerId = order.addLongProperty("customerId").notNull().getProperty();
order.addToOne(customer, customerId);
ToMany customerToOrders = customer.addToMany(order, customerId);
customerToOrders.setName("orders");
customerToOrders.orderAsc(orderDate);
}
}
1)增加表如果你自己想加一些其他的表的話,你可以自己按照addSession,addNote ,addReplay三個函數的方式加,類名、字段名可以自己隨便取比如說,比我我要加一個用戶表,字段包括name,age,sex三個,我可以這樣做
private static void addUser(Schema schema)
{
Entity note = schema.addEntity("UserEntity");
note.addIdProperty().autoincrement();
note.addStringProperty("name").notNull();
note.addIntProperty("age").notNull();
//true代表男,false代表女
note.addBooleanProperty("sex").notNull();
}
然后在main函數里面做如下調用
public static void main(String[] args) throws Exception
{
Schema schema = new Schema(3, "com.cn.speedchat.greendao");
addNote(schema);
addSession(schema);
addReplay(schema);
addUser(schema);
addCustomerOrder(schema);
new DaoGenerator().generateAll(schema, "../javagreendao/src-gen");
}
2)刪除表當然一些不需要的表你可以不用,刪掉就行,比如說你不須要addReplay,你就在main函數里面別調用addReplay(schema)就行
總之呢,這就是一個基于greenDao-generator.jar和freemarker.jar兩個包的java工程
然后運行該工程,控制臺打印出如下結果:
greenDAO Generator Copyright 2011-2013 Markus Junginger,
greenrobot.de. Licensed under GPL V3. This program comes with
ABSOLUTELY NO WARRANTY Processing schema version 3… Written
/home/csm/workspace/javagreendao/src-gen/com/cn/speedchat/greendao/MqttChatEntityDao.java
Written
/home/csm/workspace/javagreendao/src-gen/com/cn/speedchat/greendao/MqttChatEntity.java
Written
/home/csm/workspace/javagreendao/src-gen/com/cn/speedchat/greendao/SessionEntityDao.java
Written
/home/csm/workspace/javagreendao/src-gen/com/cn/speedchat/greendao/SessionEntity.java
Written
/home/csm/workspace/javagreendao/src-gen/com/cn/speedchat/greendao/ReplayEntityDao.java
Written
/home/csm/workspace/javagreendao/src-gen/com/cn/speedchat/greendao/ReplayEntity.java
Written
/home/csm/workspace/javagreendao/src-gen/com/cn/speedchat/greendao/CustomerDao.java
Written
/home/csm/workspace/javagreendao/src-gen/com/cn/speedchat/greendao/Customer.java
Written
/home/csm/workspace/javagreendao/src-gen/com/cn/speedchat/greendao/OrderDao.java
Written
/home/csm/workspace/javagreendao/src-gen/com/cn/speedchat/greendao/Order.java
Written
/home/csm/workspace/javagreendao/src-gen/com/cn/speedchat/greendao/DaoMaster.java
Written
/home/csm/workspace/javagreendao/src-gen/com/cn/speedchat/greendao/DaoSession.java
Processed 5 entities in 189ms
這代表成功的生成了Dao文件,然后我們按F5刷新該工程,在查看src-gen目錄文件,自動生成了很多java文件,這就是我們要的,我這里截圖給大家看
但是有很多錯誤是不是,沒關系,這個工程識別不了這些文件,這些文件是基于greendao-1.3.7.jar包的,是Android工程里面要用到的。先不管這個java工程了。
數據庫中如何查詢表的最后一條記錄?
1、首先,創(chuàng)建一個測試,代碼如下圖所示,然后進入下一步。
2、其次,完成上述步驟后,插入測試數據,代碼如下圖所示,然后進入下一步。
3、接著,完成上述步驟后,查詢表中的數據,代碼如下圖所示,然后進入下一步。
4、最后,完成上述步驟后,重新排序,獲取最后一條記錄并轉到bbb字段的長度,如下圖所示。這樣,問題就解決了。
如何使用greendao進行查詢并將結果按一個字段排序
package pl.surecase.eu; import de.greenrobot.daogenerator.DaoGenerator; import de.greenrobot.daogenerator.Entity; import de.greenrobot.daogenerator.Property; import de.greenrobot.daogenerator.Schema; import de.greenrobot.daogenerator.ToMany; public class MyDaoGenerator { public static void main(Strigreendao entity里屬性刪除了,數據庫表字段會變嗎
如果沒有進行數據庫同步的還應該不會有影響的,但如果刪除了對應的字段,應該會出現錯誤的信息的。如何使用greendao進行查詢并將結果按一個字段排序
GROUPBY語句用于結合合計函數,根據一個或多個列對結果集進行分組。groupby也可以同時使用多個字段進行分組例子:假設一個表tab有一個id字段、一個Name字段,內容如下idName3張三5李四1王五1趙六sql語句select*fromtabgroupbyid這條SQL的結果應該是idName1王五3張三5趙六第一個Name顯示的是王五因為sqlgroupby滿足條件的有多個時是取第一個的上面的結果并沒有什么實際意義groupby一般結合合計函數一起使用比如sql語句selectid,count(*)totalfromtabgroupbyid用于統(tǒng)計每個id有多少個結果idtota上一篇
標書里的從業(yè)經驗怎么寫
下一篇
返回列表