Java tutorial
//package com.java2s; //License from project: Open Source License import android.database.sqlite.SQLiteDatabase; public class Main { private static final String TABLE_CONTENT_HELP = "content_help_table"; public static void dropTable(SQLiteDatabase db) { db.execSQL("DROP TABLE IF EXISTS " + TABLE_CONTENT_HELP); } }