Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
// Licensed under the Apache License, Version 2.0

import android.database.sqlite.SQLiteDatabase;

public class Main {
    public static void cleanTable(SQLiteDatabase mDB, String tableName) {
        mDB.delete(tableName, null, null);
    }
}