【问题标题】:Eclipse error database connection [closed]Eclipse错误数据库连接[关闭]
【发布时间】:2014-06-19 06:28:40
【问题描述】:

我该怎么办?谢谢

  import java.io.File;
   import java.io.FileOutputStream;
   import java.io.IOException;
   import java.io.InputStream;
   import java.io.OutputStream;

    import android.content.Context;
import android.database.SQLException;
 import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;

 Public class DataBaseHelper extends SQLiteOpenHelper
 {
 private static String TAG = "DataBaseHelper"; // Tag just for the LogCat window
//destination path (location) of our database on device
private static String DB_PATH = ""; 
private static String DB_NAME ="finala";// Database name
private SQLiteDatabase mDataBase; 
private final Context mContext;

public DataBaseHelper(Context context) 
{
  super(context, DB_NAME, null, 1);// 1? its Database Version
  if(android.os.Build.VERSION.SDK_INT >= 17){
   DB_PATH = context.getApplicationInfo().dataDir + "/databases/";         
}
 else
 {
    DB_PATH = "/data/data/" + context.getPackageName() + "/databases/";
 }
 this.mContext = context;
 }   

 public void createDataBase() throws IOException
 {
//If database not exists copy it from the assets

boolean mDataBaseExist = checkDataBase();
if(!mDataBaseExist)
{
    this.getReadableDatabase();
    this.close();
    try 
    {
        //Copy the database from assests
        copyDataBase();
        Log.e(TAG, "createDatabase database created");
    } 
    catch (IOException mIOException) 
    {
        throw new Error("ErrorCopyingDataBase");
    }
   }
   }
//Check that the database exists here: /data/data/your package/databases/Da Name
private boolean checkDataBase()
{
    File dbFile = new File(DB_PATH + DB_NAME);
    //Log.v("dbFile", dbFile + "   "+ dbFile.exists());
    return dbFile.exists();
}

//Copy the database from assets
private void copyDataBase() throws IOException
  {
    InputStream mInput = mContext.getAssets().open(DB_NAME);
    String outFileName = DB_PATH + DB_NAME;
    OutputStream mOutput = new FileOutputStream(outFileName);
    byte[] mBuffer = new byte[1024];
    int mLength;
    while ((mLength = mInput.read(mBuffer))>0)
    {
        mOutput.write(mBuffer, 0, mLength);
    }
    mOutput.flush();
    mOutput.close();
    mInput.close();
}

//Open the database, so we can query it
public boolean openDataBase() throws SQLException
{
    String mPath = DB_PATH + DB_NAME;
    //Log.v("mPath", mPath);
     mDataBase = SQLiteDatabase.openDatabase(mPath, null,   SQLiteDatabase.CREATE_IF_NECESSARY);
    //mDataBase = SQLiteDatabase.openDatabase(mPath, null, SQLiteDatabase.NO_LOCALIZED_COLLATORS);
    return mDataBase != null;
}

@Override
public synchronized void close() 
{
    if(mDataBase != null)
        mDataBase.close();
    super.close();
}

}
  public class DataHelper {

}

错误是:

-The type DatabaseHelper must implement the inherited abstract method SQLiteOpenHelper.onCreate(SQLiteDatabase)
-Breakpoint:DataBaseHelper
-The type DatabaseHelper must implement the inherited abstract method SQLiteOpenHelper.onUpgrade(SQLiteDatabase,int,int)
-Syntax error on token "Public" public expected
-The public type DataBaseHelper must be defined in it's own file.

【问题讨论】:

  • 请在此处添加粘贴代码和错误。
  • 您提供的链接不是公共链接,请粘贴有问题的代码,以便用户阅读并给出正确的解决方案。
  • 所以,你已经写下了你遇到的每一个错误。为什么不直接修复它们?

标签: java android eclipse sqlite


【解决方案1】:

公共类 DataBaseHelper 扩展 SQLiteOpenHelper

那不是“公开的”

请“公开”。

【讨论】:

    【解决方案2】:

    您必须从 SqliteOpenHelper 覆盖 onCreate()onUpgrade()

    因为SqliteOpenHelper 是一个抽象类。每当您扩展一个抽象类时,您都需要覆盖(实现)它的抽象方法。

    阅读SQLiteHelper class reference

    【讨论】:

    • 还有一个问题:你为什么给我负分?我是这个领域的新手,我才15岁,我只做了将近一年的编程..
    • 我没有,我给你解决方案了。
    • 感谢您的解决方案。我解决了问题。
    【解决方案3】:

    -DatabaseHelper类型必须实现继承的抽象方法SQLiteOpenHelper.onCreate(SQLiteDatabase)

    你需要添加

    @Override
    public void onCreate(SQLiteDatabase db) {
    }
    

    通过一些实现来创建您的数据库架构,以防数据库文件刚刚创建。

    -Breakpoint:DataBaseHelper

    行上有一个断点。这不是错误,只是一条消息。

    -DatabaseHelper类型必须实现继承的抽象方法SQLiteOpenHelper.onUpgrade(SQLiteDatabase,int,int)

    你需要添加

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
    }
    

    作为更新数据库模式的方法。你可以先把它留空。

    -令牌“Public”公共预期的语法错误

    使用public 和小写p

    -公共类型DataBaseHelper必须在它自己的文件中定义。

    包级公共类源必须位于与类名匹配的文件中。 DataHelperDataBaseHelper 不匹配;重命名另一个。


    总体而言,您似乎正在尝试使用预填充的数据库。考虑为此使用android-sqlite-asset-helper 库,而不是尝试复制您在某处找到的有缺陷的示例。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2014-03-07
      • 1970-01-01
      • 2015-12-12
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2014-03-18
      • 2011-10-19
      相关资源
      最近更新 更多