blob: 81164ef1f99de8c87c61ae96e89ad653652af3ca [file] [log] [blame]
Jeff Browne5360fb2011-10-31 17:48:13 -07001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef _ANDROID_DATABASE_SQLITE_COMMON_H
18#define _ANDROID_DATABASE_SQLITE_COMMON_H
19
20#include <jni.h>
Steven Moreland2279b252017-07-19 09:50:45 -070021#include <nativehelper/JNIHelp.h>
Jeff Browne5360fb2011-10-31 17:48:13 -070022
23#include <sqlite3.h>
24
25// Special log tags defined in SQLiteDebug.java.
26#define SQLITE_LOG_TAG "SQLiteLog"
27#define SQLITE_TRACE_TAG "SQLiteStatements"
28#define SQLITE_PROFILE_TAG "SQLiteTime"
29
30namespace android {
31
32/* throw a SQLiteException with a message appropriate for the error in handle */
33void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle);
34
35/* throw a SQLiteException with the given message */
36void throw_sqlite3_exception(JNIEnv* env, const char* message);
37
38/* throw a SQLiteException with a message appropriate for the error in handle
39 concatenated with the given message
40 */
41void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle, const char* message);
42
43/* throw a SQLiteException for a given error code */
44void throw_sqlite3_exception_errcode(JNIEnv* env, int errcode, const char* message);
45
46void throw_sqlite3_exception(JNIEnv* env, int errcode,
47 const char* sqlite3Message, const char* message);
48
49}
50
51#endif // _ANDROID_DATABASE_SQLITE_COMMON_H