Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.database.sqlite.SQLiteDatabase;

public class Main {
    public static void deleteTable(final SQLiteDatabase db, final String tableName) {
        db.execSQL("DROP TABLE IF EXISTS " + tableName);
    }
}