I've never copied a database from the sdcard to the /data/data folder, but I would imagine that in order to use the database, you just need to create an instance of a DatabaseHelper with the name of the database. Here's a skeleton version of my DatabaseHelper. You'd need to edit the DATABASE_NAME constant and set it to the name of the database you copied.
public class DatabaseHelper extends SQLiteOpenHelper
{
private Context context = null;
private static final String DATABASE_NAME = "yourdbname.db";
private static final int DATABASE_VERSION = 1;
public DatabaseHelper(Context c)
{
super(c, DATABASE_NAME, null, DATABASE_VERSION);
context = c;
}
@Override
public void onCreate(SQLiteDatabase db)
{
...
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)
{
...
}
...
}