1/*
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>
21#include <JNIHelp.h>
22
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
52