2014-03-27 14:25:53 +00:00
|
|
|
#include "sqlite.h"
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
int Java_org_telegram_SQLite_SQLiteCursor_columnType(JNIEnv *env, jobject object, int statementHandle, int columnIndex) {
|
|
|
|
sqlite3_stmt *handle = (sqlite3_stmt *)statementHandle;
|
|
|
|
return sqlite3_column_type(handle, columnIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
int Java_org_telegram_SQLite_SQLiteCursor_columnIsNull(JNIEnv *env, jobject object, int statementHandle, int columnIndex) {
|
|
|
|
sqlite3_stmt *handle = (sqlite3_stmt *)statementHandle;
|
|
|
|
int valType = sqlite3_column_type(handle, columnIndex);
|
|
|
|
return SQLITE_NULL == valType;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Java_org_telegram_SQLite_SQLiteCursor_columnIntValue(JNIEnv *env, jobject object, int statementHandle, int columnIndex) {
|
|
|
|
sqlite3_stmt *handle = (sqlite3_stmt *)statementHandle;
|
|
|
|
int valType = sqlite3_column_type(handle, columnIndex);
|
|
|
|
if (SQLITE_NULL == valType) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return sqlite3_column_int(handle, columnIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
long long Java_org_telegram_SQLite_SQLiteCursor_columnLongValue(JNIEnv *env, jobject object, int statementHandle, int columnIndex) {
|
|
|
|
sqlite3_stmt *handle = (sqlite3_stmt *)statementHandle;
|
|
|
|
int valType = sqlite3_column_type(handle, columnIndex);
|
|
|
|
if (SQLITE_NULL == valType) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return sqlite3_column_int64(handle, columnIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
double Java_org_telegram_SQLite_SQLiteCursor_columnDoubleValue(JNIEnv *env, jobject object, int statementHandle, int columnIndex) {
|
|
|
|
sqlite3_stmt *handle = (sqlite3_stmt *)statementHandle;
|
|
|
|
int valType = sqlite3_column_type(handle, columnIndex);
|
|
|
|
if (SQLITE_NULL == valType) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return sqlite3_column_double(handle, columnIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
jstring Java_org_telegram_SQLite_SQLiteCursor_columnStringValue(JNIEnv *env, jobject object, int statementHandle, int columnIndex) {
|
|
|
|
sqlite3_stmt *handle = (sqlite3_stmt *)statementHandle;
|
|
|
|
const char *str = sqlite3_column_text(handle, columnIndex);
|
|
|
|
if (str != 0) {
|
|
|
|
return (*env)->NewStringUTF(env, str);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
jbyteArray Java_org_telegram_SQLite_SQLiteCursor_columnByteArrayValue(JNIEnv *env, jobject object, int statementHandle, int columnIndex) {
|
|
|
|
sqlite3_stmt *handle = (sqlite3_stmt *)statementHandle;
|
|
|
|
void *buf = sqlite3_column_blob(handle, columnIndex);
|
|
|
|
int length = sqlite3_column_bytes(handle, columnIndex);
|
|
|
|
if (buf != 0 && length > 0) {
|
|
|
|
jbyteArray result = (*env)->NewByteArray(env, length);
|
|
|
|
(*env)->SetByteArrayRegion(env, result, 0, length, buf);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|