use of com.abubusoft.kripton.android.sqlite.KriptonContentValues in project kripton by xcesco.
the class IntDaoImpl method delete.
/**
* <h2>SQL delete</h2>
* <pre>DELETE FROM int_bean WHERE value=${value} and value2=${value2}</pre>
*
* <h2>Where parameters:</h2>
* <dl>
* <dt>${value}</dt><dd>is mapped to method's parameter <strong>value</strong></dd>
* <dt>${value2}</dt><dd>is mapped to method's parameter <strong>value2</strong></dd>
* </dl>
*
* @param value
* is used as where parameter <strong>${value}</strong>
* @param value2
* is used as where parameter <strong>${value2}</strong>
*
* @return number of deleted records
*/
@Override
public long delete(int[] value, Integer[] value2) {
if (deletePreparedStatement3 == null) {
// generate static SQL for statement
String _sql = "DELETE FROM int_bean WHERE value=? and value2=?";
deletePreparedStatement3 = KriptonDatabaseWrapper.compile(_context, _sql);
}
KriptonContentValues _contentValues = contentValuesForUpdate(deletePreparedStatement3);
_contentValues.addWhereArgs((value == null ? "" : new String(serializer1(value), StandardCharsets.UTF_8)));
_contentValues.addWhereArgs((value2 == null ? "" : new String(serializer2(value2), StandardCharsets.UTF_8)));
// log section BEGIN
if (_context.isLogEnabled()) {
// display log
Logger.info("DELETE FROM int_bean WHERE value=? and value2=?");
// log for where parameters -- BEGIN
int _whereParamCounter = 0;
for (String _whereParamItem : _contentValues.whereArgs()) {
Logger.info("==> param%s: '%s'", (_whereParamCounter++), StringUtils.checkSize(_whereParamItem));
}
// log for where parameters -- END
}
// log section END
int result = KriptonDatabaseWrapper.updateDelete(deletePreparedStatement3, _contentValues);
return result;
}
use of com.abubusoft.kripton.android.sqlite.KriptonContentValues in project kripton by xcesco.
the class IntDaoImpl method insert.
/**
* <p>SQL insert:</p>
* <pre>INSERT INTO int_bean (value, value2) VALUES (${bean.value}, ${bean.value2})</pre>
*
* <p><code>bean.id</code> is automatically updated because it is the primary key</p>
*
* <p><strong>Inserted columns:</strong></p>
* <dl>
* <dt>value</dt><dd>is mapped to <strong>${bean.value}</strong></dd>
* <dt>value2</dt><dd>is mapped to <strong>${bean.value2}</strong></dd>
* </dl>
*
* @param bean
* is mapped to parameter <strong>bean</strong>
*
* @return <strong>id</strong> of inserted record
*/
@Override
public long insert(IntBean bean) {
if (insertPreparedStatement2 == null) {
// generate static SQL for statement
String _sql = "INSERT INTO int_bean (value, value2) VALUES (?, ?)";
insertPreparedStatement2 = KriptonDatabaseWrapper.compile(_context, _sql);
}
KriptonContentValues _contentValues = contentValuesForUpdate(insertPreparedStatement2);
_contentValues.put("value", IntBeanTable.serializeValue(bean.value));
_contentValues.put("value2", IntBeanTable.serializeValue2(bean.value2));
// log section BEGIN
if (_context.isLogEnabled()) {
// log for insert -- BEGIN
StringBuffer _columnNameBuffer = new StringBuffer();
StringBuffer _columnValueBuffer = new StringBuffer();
String _columnSeparator = "";
for (String columnName : _contentValues.keys()) {
_columnNameBuffer.append(_columnSeparator + columnName);
_columnValueBuffer.append(_columnSeparator + ":" + columnName);
_columnSeparator = ", ";
}
Logger.info("INSERT INTO int_bean (%s) VALUES (%s)", _columnNameBuffer.toString(), _columnValueBuffer.toString());
// log for content values -- BEGIN
Triple<String, Object, KriptonContentValues.ParamType> _contentValue;
for (int i = 0; i < _contentValues.size(); i++) {
_contentValue = _contentValues.get(i);
if (_contentValue.value1 == null) {
Logger.info("==> :%s = <null>", _contentValue.value0);
} else {
Logger.info("==> :%s = '%s' (%s)", _contentValue.value0, StringUtils.checkSize(_contentValue.value1), _contentValue.value1.getClass().getCanonicalName());
}
}
// log for content values -- END
// log for insert -- END
// log for where parameters -- BEGIN
int _whereParamCounter = 0;
for (String _whereParamItem : _contentValues.whereArgs()) {
Logger.info("==> param%s: '%s'", (_whereParamCounter++), StringUtils.checkSize(_whereParamItem));
}
// log for where parameters -- END
}
// log section END
// insert operation
long result = KriptonDatabaseWrapper.insert(insertPreparedStatement2, _contentValues);
bean.id = result;
return result;
}
use of com.abubusoft.kripton.android.sqlite.KriptonContentValues in project kripton by xcesco.
the class IntDaoImpl method selectOne.
/**
* <h2>Select SQL:</h2>
*
* <pre>SELECT id, value, value2 FROM int_bean WHERE value=${value} and value2=${value2}</pre>
*
* <h2>Projected columns:</h2>
* <dl>
* <dt>id</dt><dd>is associated to bean's property <strong>id</strong></dd>
* <dt>value</dt><dd>is associated to bean's property <strong>value</strong></dd>
* <dt>value2</dt><dd>is associated to bean's property <strong>value2</strong></dd>
* </dl>
*
* <h2>Query's parameters:</h2>
* <dl>
* <dt>${value}</dt><dd>is binded to method's parameter <strong>value</strong></dd>
* <dt>${value2}</dt><dd>is binded to method's parameter <strong>value2</strong></dd>
* </dl>
*
* @param value
* is binded to <code>${value}</code>
* @param value2
* is binded to <code>${value2}</code>
* @return selected bean or <code>null</code>.
*/
@Override
public IntBean selectOne(int[] value, Integer[] value2) {
KriptonContentValues _contentValues = contentValues();
// query SQL is statically defined
String _sql = SELECT_ONE_SQL2;
// add where arguments
_contentValues.addWhereArgs((value == null ? "" : new String(serializer1(value), StandardCharsets.UTF_8)));
_contentValues.addWhereArgs((value2 == null ? "" : new String(serializer2(value2), StandardCharsets.UTF_8)));
String[] _sqlArgs = _contentValues.whereArgsAsArray();
// log section BEGIN
if (_context.isLogEnabled()) {
// manage log
Logger.info(_sql);
// log for where parameters -- BEGIN
int _whereParamCounter = 0;
for (String _whereParamItem : _contentValues.whereArgs()) {
Logger.info("==> param%s: '%s'", (_whereParamCounter++), StringUtils.checkSize(_whereParamItem));
}
// log for where parameters -- END
}
// log section END
try (Cursor _cursor = database().rawQuery(_sql, _sqlArgs)) {
// log section BEGIN
if (_context.isLogEnabled()) {
Logger.info("Rows found: %s", _cursor.getCount());
}
// log section END
IntBean resultBean = null;
if (_cursor.moveToFirst()) {
int index0 = _cursor.getColumnIndex("id");
int index1 = _cursor.getColumnIndex("value");
int index2 = _cursor.getColumnIndex("value2");
resultBean = new IntBean();
resultBean.id = _cursor.getLong(index0);
if (!_cursor.isNull(index1)) {
resultBean.value = IntBeanTable.parseValue(_cursor.getBlob(index1));
}
if (!_cursor.isNull(index2)) {
resultBean.value2 = IntBeanTable.parseValue2(_cursor.getBlob(index2));
}
}
return resultBean;
}
}
use of com.abubusoft.kripton.android.sqlite.KriptonContentValues in project kripton by xcesco.
the class IntDaoImpl method selectOne.
/**
* <h2>Select SQL:</h2>
*
* <pre>SELECT id, value, value2 FROM int_bean WHERE value=${value} and value2=${value2}</pre>
*
* <h2>Projected columns:</h2>
* <dl>
* <dt>id</dt><dd>is associated to bean's property <strong>id</strong></dd>
* <dt>value</dt><dd>is associated to bean's property <strong>value</strong></dd>
* <dt>value2</dt><dd>is associated to bean's property <strong>value2</strong></dd>
* </dl>
*
* <h2>Query's parameters:</h2>
* <dl>
* <dt>${value}</dt><dd>is binded to method's parameter <strong>value</strong></dd>
* <dt>${value2}</dt><dd>is binded to method's parameter <strong>value2</strong></dd>
* </dl>
*
* @param value
* is binded to <code>${value}</code>
* @param value2
* is binded to <code>${value2}</code>
* @param listener
* is the IntBean listener
*/
@Override
public void selectOne(int[] value, Integer[] value2, OnReadBeanListener<IntBean> listener) {
KriptonContentValues _contentValues = contentValues();
// query SQL is statically defined
String _sql = SELECT_ONE_SQL3;
// add where arguments
_contentValues.addWhereArgs((value == null ? "" : new String(serializer1(value), StandardCharsets.UTF_8)));
_contentValues.addWhereArgs((value2 == null ? "" : new String(serializer2(value2), StandardCharsets.UTF_8)));
String[] _sqlArgs = _contentValues.whereArgsAsArray();
// log section BEGIN
if (_context.isLogEnabled()) {
// manage log
Logger.info(_sql);
// log for where parameters -- BEGIN
int _whereParamCounter = 0;
for (String _whereParamItem : _contentValues.whereArgs()) {
Logger.info("==> param%s: '%s'", (_whereParamCounter++), StringUtils.checkSize(_whereParamItem));
}
// log for where parameters -- END
}
// log section END
try (Cursor _cursor = database().rawQuery(_sql, _sqlArgs)) {
// log section BEGIN
if (_context.isLogEnabled()) {
Logger.info("Rows found: %s", _cursor.getCount());
}
// log section END
IntBean resultBean = new IntBean();
if (_cursor.moveToFirst()) {
int index0 = _cursor.getColumnIndex("id");
int index1 = _cursor.getColumnIndex("value");
int index2 = _cursor.getColumnIndex("value2");
int rowCount = _cursor.getCount();
do {
// reset mapping
// id does not need reset
resultBean.value = null;
resultBean.value2 = null;
// generate mapping
resultBean.id = _cursor.getLong(index0);
if (!_cursor.isNull(index1)) {
resultBean.value = IntBeanTable.parseValue(_cursor.getBlob(index1));
}
if (!_cursor.isNull(index2)) {
resultBean.value2 = IntBeanTable.parseValue2(_cursor.getBlob(index2));
}
listener.onRead(resultBean, _cursor.getPosition(), rowCount);
} while (_cursor.moveToNext());
}
}
}
use of com.abubusoft.kripton.android.sqlite.KriptonContentValues in project kripton by xcesco.
the class DoubleDaoImpl method insert.
/**
* <h2>SQL insert</h2>
* <pre>INSERT INTO double_bean (id, value, value2) VALUES (${id}, ${value}, ${value2})</pre>
*
* <h2>Inserted columns:</strong></h2>
* <dl>
* <dt>id</dt><dd>is binded to query's parameter <strong>${id}</strong> and method's parameter <strong>id</strong></dd>
* <dt>value</dt><dd>is binded to query's parameter <strong>${value}</strong> and method's parameter <strong>value</strong></dd>
* <dt>value2</dt><dd>is binded to query's parameter <strong>${value2}</strong> and method's parameter <strong>value2</strong></dd>
* </dl>
*
* @param id
* is binded to column value <strong>id</strong>
* @param value
* is binded to column value <strong>value</strong>
* @param value2
* is binded to column value <strong>value2</strong>
*
* @return <strong>id</strong> of inserted record
*/
@Override
public long insert(long id, double[] value, Double[] value2) {
if (insertPreparedStatement1 == null) {
// generate static SQL for statement
String _sql = "INSERT INTO double_bean (id, value, value2) VALUES (?, ?, ?)";
insertPreparedStatement1 = KriptonDatabaseWrapper.compile(_context, _sql);
}
KriptonContentValues _contentValues = contentValuesForUpdate(insertPreparedStatement1);
_contentValues.put("id", id);
_contentValues.put("value", serializer1(value));
_contentValues.put("value2", serializer2(value2));
// log section BEGIN
if (_context.isLogEnabled()) {
// log for insert -- BEGIN
StringBuffer _columnNameBuffer = new StringBuffer();
StringBuffer _columnValueBuffer = new StringBuffer();
String _columnSeparator = "";
for (String columnName : _contentValues.keys()) {
_columnNameBuffer.append(_columnSeparator + columnName);
_columnValueBuffer.append(_columnSeparator + ":" + columnName);
_columnSeparator = ", ";
}
Logger.info("INSERT INTO double_bean (%s) VALUES (%s)", _columnNameBuffer.toString(), _columnValueBuffer.toString());
// log for content values -- BEGIN
Triple<String, Object, KriptonContentValues.ParamType> _contentValue;
for (int i = 0; i < _contentValues.size(); i++) {
_contentValue = _contentValues.get(i);
if (_contentValue.value1 == null) {
Logger.info("==> :%s = <null>", _contentValue.value0);
} else {
Logger.info("==> :%s = '%s' (%s)", _contentValue.value0, StringUtils.checkSize(_contentValue.value1), _contentValue.value1.getClass().getCanonicalName());
}
}
// log for content values -- END
// log for insert -- END
// log for where parameters -- BEGIN
int _whereParamCounter = 0;
for (String _whereParamItem : _contentValues.whereArgs()) {
Logger.info("==> param%s: '%s'", (_whereParamCounter++), StringUtils.checkSize(_whereParamItem));
}
// log for where parameters -- END
}
// log section END
// insert operation
long result = KriptonDatabaseWrapper.insert(insertPreparedStatement1, _contentValues);
return result;
}
Aggregations