Java Code Examples for de.greenrobot.dao.query.QueryBuilder#LOG_VALUES
The following examples show how to use
de.greenrobot.dao.query.QueryBuilder#LOG_VALUES .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DBHelper.java From NBAPlus with Apache License 2.0 | 5 votes |
private DBHelper(Context context) { DaoMaster.DevOpenHelper helper = new DaoMaster.DevOpenHelper(context, DB_NAME, null); db = helper.getWritableDatabase(); // 注意:该数据库连接属于 DaoMaster,所以多个 Session 指的是相同的数据库连接。 DaoMaster daoMaster = new DaoMaster(db); daoSession = daoMaster.newSession(); if(Config.DEBUG) { QueryBuilder.LOG_SQL = true; QueryBuilder.LOG_VALUES = true; } }
Example 2
Source File: GreenDaoUtils.java From UltimateAndroid with Apache License 2.0 | 5 votes |
private static void setIfLog() { if (isLog) { QueryBuilder.LOG_SQL = true; QueryBuilder.LOG_VALUES = true; } else { QueryBuilder.LOG_SQL = false; QueryBuilder.LOG_VALUES = false; } }
Example 3
Source File: GreenDaoUtils.java From UltimateAndroid with Apache License 2.0 | 5 votes |
private static void setIfLog() { if (isLog) { QueryBuilder.LOG_SQL = true; QueryBuilder.LOG_VALUES = true; } else { QueryBuilder.LOG_SQL = false; QueryBuilder.LOG_VALUES = false; } }
Example 4
Source File: GreenDaoUtils.java From UltimateAndroid with Apache License 2.0 | 5 votes |
private static void setIfLog() { if (isLog) { QueryBuilder.LOG_SQL = true; QueryBuilder.LOG_VALUES = true; } else { QueryBuilder.LOG_SQL = false; QueryBuilder.LOG_VALUES = false; } }
Example 5
Source File: DbCore.java From RxJavaApp with Apache License 2.0 | 4 votes |
public static void enableQueryBuilderLog(){ QueryBuilder.LOG_SQL = true; QueryBuilder.LOG_VALUES = true; }