这是我的数据库代码,我想从我的数据库中检索名称,并将其显示在listview中,在下面发布的另一个java文件中显示为profilelist.jar。但是我不能这样做,请告诉我这段代码是否正确?
package a.vaccination;
import android.annotation.TargetApi;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.os.Build;
import android.util.Log;
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
public class datahandler {
public static final String KEY_ROWID = "id";
public static final String KEY_name = "name";
public static final String KEY_dob = "dob";
public static final String KEY_contact = "contact";
public static final String KEY_email = "email";
private static final String TAG = "DBAdapter";
private static final String DATABASE_NAME = "profile";
private static final String DATABASE_TABLE = "baby";
private static final int DATABASE_VERSION = 2;
private static final String DATABASE_CREATE = "create table if not exists"
+ DATABASE_TABLE
+ "(id integer primary key autoincrement, "
+ "name VARCHAR not null, dob date, contact VARCHAR, email
VARCHAR);";
private final Context context;
private DatabaseHelper DBHelper;
private SQLiteDatabase db;
public datahandler(Context ctx) {
this.context = ctx;
DBHelper = new DatabaseHelper(context);
}
protected static class DatabaseHelper extends SQLiteOpenHelper {
DatabaseHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
// TODO Auto-generated method stub
try {
db.execSQL(DATABASE_CREATE);
// db = DBHelper.getWritableDatabase();
Log.i(DATABASE_NAME, "create");
} catch (SQLException e) {
e.printStackTrace();
}
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// TODO Auto-generated method stub
Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
+ newVersion + ", which will destroy all old
data");
db.execSQL("DROP TABLE IF EXISTS contacts");
onCreate(db);
}
}
// ---opens the database---
public datahandler open() throws SQLException {
db = DBHelper.getWritableDatabase();
return this;
}
// ---closes the database---
public void close() {
DBHelper.close();
}
// ---insert a record into the database---
public long insertRecord(String name, String dob, String contact,
String email) {
ContentValues initialValues = new ContentValues();
initialValues.put(KEY_name, name);
initialValues.put(KEY_dob, dob);
initialValues.put(KEY_contact, contact);
initialValues.put(KEY_email, email);
Log.i(DATABASE_NAME, "values added");
return db.insert(DATABASE_TABLE, null, initialValues);
}
// ---updates a record---
public boolean updateRecord(long rowId, String name, String dob,
String contact, String email) {
ContentValues args = new ContentValues();
args.put(KEY_name, name);
args.put(KEY_dob, dob);
args.put(KEY_contact, contact);
args.put(KEY_email, email);
return db.update(DATABASE_TABLE, args, KEY_ROWID + "=" + rowId, null) > 0;
}
public Cursor getAllTitles() {
return db.query(DATABASE_TABLE, new String[] { KEY_ROWID, KEY_name,
KEY_dob, KEY_contact, KEY_email }, null, null, null, null,
null, null);
}
// ---retrieves a particular title---
public Cursor getTitle(long rowId) throws SQLException {
Cursor mCursor = db.query(true, DATABASE_TABLE, new String[] {
KEY_ROWID, KEY_name, KEY_email, KEY_dob, KEY_contact },
KEY_ROWID + "=" + rowId, null, null, null, null, null,
null);
if (mCursor != null) {
mCursor.moveToFirst();
}
return mCursor;
}
public void getReadableDatabase() {
// TODO Auto-generated method stub
Cursor cur = db
.rawQuery("select rowid _id,* from DATABASE_TABLE", null);
}
}
profileList.java
package a.vaccination;
import android.app.Activity;
import android.content.Intent;
import android.database.Cursor;
import android.os.Bundle;
import android.support.v4.widget.SimpleCursorAdapter;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.Button;
import android.widget.ListView;
import android.widget.Toast;
//this shows profies of baby and option of add new one
public class profilelist extends Activity implements OnItemClickListener {
datahandler db = new datahandler(this);
SimpleCursorAdapter adapter = null;
Cursor c;
@SuppressWarnings("deprecation")
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.child);
Button add = (Button) findViewById(R.id.button1);
add.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// navigate to create profile
Intent it = new Intent(profilelist.this,
createprofile.class);
startActivity(it);
}
});
db.open();
Cursor c = db.getAllTitles();
if (c.moveToFirst()) {
do {
DisplayRecord(c);
} while (c.moveToNext());
}
db.close();
// ---get a Record---
db.open();
c = db.getTitle(2);
if (c.moveToFirst())
DisplayRecord(c);
else
Toast.makeText(this, "No Assignments found", Toast.LENGTH_LONG)
.show();
db.close();
}
public void DisplayRecord(Cursor c) {
// TODO Auto-generated method stub
Toast.makeText(
this,
"id: " + c.getString(0) + "\n" + "name: " + c.getString(1)
+ "\n" + " dob: " + c.getString(2) +
"contact"
+ c.getString(3) + "email" +
c.getString(4),
Toast.LENGTH_SHORT).show();
String[] columns = new String[] { datahandler.KEY_name };
int[] to = new int[] { R.id.name };
adapter = new SimpleCursorAdapter(this, R.layout.child, c, columns,
to, 0);
ListView names = (ListView) findViewById(R.id.listView1);
names.setAdapter(adapter);
names.setOnItemClickListener(this);
}
我在a.vaccination.datahandler.getTitle(datahandler.java:115)和a.vaccination.profilelist.oncreate(profilelist.java:67)java.lang.nosuchmethoderror:android.database.sqlite.sqliteDatabaseB.query上都提供了profilelist.java和datahandler.java
plz帮助我,我在这里被严重卡住了@override public void onItemClick(AdapterView arg0,View arg1,int arg2,long arg3){//TODO自动生成的方法存根
Intent i = new Intent(profilelist.this, vaccination.class);
startActivity(i);
}
}
我最近实现了这种类型的特性。基本上,您必须创建一个自定义的BaseAdapter来在ListView中显示数据。在适配器构造函数中,传入包含数据的对象数组。我经常使用的教程是:http://www.vogella.com/articles/androidlistview/article.html。希望这有帮助!
好的,所以我让它运行,显示用户ID,但不得分。然后我开始做一些改变,忘记了我改变了什么,现在我又回到了null null。我觉得我可能删掉了什么或者拼错了什么。 下面是我的模型: 数据库:链接到我的数据库屏幕截图
问题内容: 我正在使用jdbc编写程序,该程序将成为数据库的接口(类似于CRUD应用程序)。我假设我必须编写一个类(例如),该类将对数据库执行所有操作(以及可能会简化为这些操作的某些其他逻辑)。用户界面由一组表和一些按钮组成。要使用Jtable,我需要实现一个类(例如),它是AbstractTableModel的子类。因此,此类将向用户显示我的数据。我需要为数据库架构中的所有表实现这种模型。我不想
被一个问题缠住了。我是android开发的新手。我的问题是我有一个SQLite数据库,我正在其中保存映像和一些数据,但当我检索这些数据时,映像没有显示在ListView中。其他数据正在被推翻。 这是我的自定义列表布局 null 这是我的自定义适配器 } 这是activity 这是数据列表
我正在根据下面显示的代码从数据库填充ListView,代码片段实现了CursorLoader。早些时候,出于同样的目的,我使用SimpleCrsorAdapter,但出于某些原因,我不得不改为ArrayAdapter。 数据库只有两列: _id(整数主键自动增量)和消息(字符串非空) ListView工作正常,但问题是listview中显示的字符串会自动按字母顺序排序,而不是按存储顺序排序。而我在
所以,数据库(MySQL)中有一个包含姓名和照片(blob)的表。在我的网页应用程序的主页上有一个按钮,点击它后-它必须是另一个页面,包含数据库的所有结果。我使用servlet/jsp/、jdbc和MVC模式,我有带有字段名称和照片(字节[])的实体User,我有返回List的DAO类,我想在结果页面上从数据库中检索每个用户照片和照片附近的他的名字。 如何使用 servlet/jsp 执行此操作?
我想在我的应用程序中显示来自sqlite数据库的图像。我的要求是显示文本视图及其相关图像。我将我的数据库文件保存在资产文件夹中。但实际上我的图像存储在服务器的“allimages”文件夹中。 我的数据库列(我保留的assets文件夹中的db)如下所示: S.无描述 1 div style=“文本对齐:对齐;” 2 div style="文本对齐:对齐;" 现在我的问题是在我的数据库中,图像路径存储