如何从sqlite数据库中获取数据并显示在listview中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从sqlite数据库中获取数据并显示在listview中相关的知识,希望对你有一定的参考价值。

参考技术A 在登录页面后,我想在listview中把Apple显示成A,Boy显示成B等等,直到F。但是在程序中当我完全登录后,只有登录表成功创建,主菜单还是没有创建。
我想在test database中创建主菜单,然后我想从主菜单表(mainmenu table)中获取数据再显示在listview中。
我使用了下面的代码:
if(username.length()>0&&password.length()>0)

SQLiteAdapter db=new SQLiteAdapter(Main.this);
db.openToWrite();
if(db.Login(username,password))

System.out.println("goutham");
Intent intent=new Intent(getApplicationContext(),ExampleActivity.class);

startActivity(intent);


SQLiteAdapter.java


public Cursor queueAll()
String[] columns = new String[] KEY_ID, KEY_CONTENT ;
Cursor cursor = sqLiteDatabase.query(MYDATABASE_TABLE, columns, null,
null, null, null, null);

return cursor;


private static class SQLiteHelper extends SQLiteOpenHelper

public SQLiteHelper(Context context, String name,
CursorFactory factory, int version)
super(context, name, factory, version);


@Override
public void onCreate(SQLiteDatabase db)
// TODO Auto-generated method stub
db.execSQL(SCRIPT_CREATE_DATABASE);
db.execSQL(DATABASE_CREATE);


@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)
// TODO Auto-generated method stub





public long AddUser(String username, String password)
ContentValues initialValues = new ContentValues();
initialValues.put(KEY_USERNAME, username);
initialValues.put(KEY_PASSWORD, password);
return sqLiteDatabase.insert(DATABASE_TABLE, null, initialValues);



public boolean Login(String username, String password)
// TODO Auto-generated method stub
Cursor mCursor = sqLiteDatabase.rawQuery("SELECT * FROM "
+ DATABASE_TABLE + " WHERE username=? AND password=?",
new String[] username, password );
if (mCursor != null)
if (mCursor.getCount() > 0)
return true;


return false;




ExampleActivity.java
public class ExampleActivity extends Activity
private SQLiteAdapter mysqliteAdapter;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ListView listContent = (ListView) findViewById(R.id.contentlist);

/*
* Create/Open a SQLite database and fill with dummy content and close
* it
*/
mySQLiteAdapter = new SQLiteAdapter(this);
mySQLiteAdapter.openToWrite();
// mySQLiteAdapter.deleteAll();

mySQLiteAdapter.insert("A for Apply");
mySQLiteAdapter.insert("B for Boy");
mySQLiteAdapter.insert("C for Cat");
mySQLiteAdapter.insert("D for Dog");
mySQLiteAdapter.insert("E for Egg");
mySQLiteAdapter.insert("F for Fish");

mySQLiteAdapter.close();

/*
* Open the same SQLite database and read all it's content.
*/
mySQLiteAdapter = new SQLiteAdapter(this);
mySQLiteAdapter.openToRead();

Cursor cursor = mySQLiteAdapter.queueAll();
startManagingCursor(cursor);

String[] from = new String[] SQLiteAdapter.KEY_CONTENT ;
int[] to = new int[] R.id.text ;

SimpleCursorAdapter cursorAdapter = new SimpleCursorAdapter(this,
R.layout.row, cursor, from, to);

listContent.setAdapter(cursorAdapter);

mySQLiteAdapter.close();




运行程序后,登录表在数据库中创建了,但是主菜单表没有创建。运行程序后,显示一个错误:
sqlite returned code=1 no such a table in MY_TABLE

通过互联网整理获得以下解决方法:

=================1楼=====================
Database class:
public String getData1() throws SQLException
// TODO Auto-generated method stub
String[] columns1 = new String[] KEY_DATE ;
Cursor c1 = ourDatabase.query(DATABASE_MARKSTABLE, columns1, null, null, null,
null, KEY_ENDINGTIME+" DESC", " 30");
String result1 = "";

int isName = c1.getColumnIndex(KEY_DATE);

for (c1.moveToFirst(); !c1.isAfterLast(); c1.moveToNext())

result1 = result1 + c1.getString(isName)
+ " " + "\n";

c1.close();
return result1;
参考技术B 代码:
if(username.length()>0&&password.length()>0)

SQLiteAdapter db=new SQLiteAdapter(Main.this);
db.openToWrite();
if(db.Login(username,password))

System.out.println("goutham");
Intent intent=new Intent(getApplicationContext(),ExampleActivity.class);

startActivity(intent);

如何从核心数据中获取数据并在表格视图中显示 iOS 6

【中文标题】如何从核心数据中获取数据并在表格视图中显示 iOS 6【英文标题】:How to fetch data from core data and display in table View iOS 6 【发布时间】:2013-09-01 10:59:58 【问题描述】:

我已成功将通讯录数据存储在 Core Data 中,但我无法检索它并将其显示在 tableView 中。我缺少什么?

这就是我从核心数据中获取数据的方式。

-(void)fetchFromDatabase

  AddressBookAppDelegate *appDelegate =[[UIApplication sharedApplication]delegate];
  NSManagedObjectContext *context = [appDelegate managedObjectContext];
  NSEntityDescription *entityDesc = [NSEntityDescription entityForName:@"AddressBook" inManagedObjectContext:context];
  NSFetchRequest *request = [[NSFetchRequest alloc] init];
  [request setEntity:entityDesc];

  NSError *error;
  self.arrayForTable = [context executeFetchRequest:request error:&error];
   NSLog(@"fetched data = %@",[self.arrayForTable lastObject]); //this shows the data
   [self.tableView reloadData];

这是我的表格视图配置。

 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

   return 1;


- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

  return [self.arrayForTable count];



- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

   static NSString *CellIdentifier = @"Cell";

   UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
   if (cell == nil) 
   cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
   reuseIdentifier:CellIdentifier];

   if ([self.arrayForTable count]>0)
   
       NSLog(@" table view content  = %@",[self.arrayForTable lastObject]);// this doesn't log
       AddressBook *info = [self.arrayForTable objectAtIndex:indexPath.row];
       cell.textLabel.text = info.firstName;

    
    
  return cell;

【问题讨论】:

尝试在fetchFromDatabase 方法的末尾添加[self.tableView reloadData]。 - 您还应该考虑使用 NSFetchedResultsController 在表格视图中显示核心数据对象。 我更新了 [self.tableView reloadData];方法 。但结果是一样的。 是否调用了numberOfRowsInSectioncellForRowAtIndexPath numberOfRowsInSection 被调用,但 cellForRowAtIndexPath 没有被调用。 [self.arrayForTable count]numberOfRowsInSection 中的值是多少? 【参考方案1】:

正如讨论结果,self.arrayForTableviewWillAppear 中被替换为一个空数组获取fetchFromDatabase 中的对象之后。

另一个问题是程序的每次运行都会在数据库中创建新对象, 导致重复的对象。你可以

在插入新对象之前删除所有对象,或者 对于每个名称,检查数据库中是否已存在匹配对象,仅在必要时插入新对象。

“核心数据编程指南”中的"Implementing Find-or-Create Efficiently" 中描述了更高级的技术。

【讨论】:

以上是关于如何从sqlite数据库中获取数据并显示在listview中的主要内容,如果未能解决你的问题,请参考以下文章

如何从sqlite数据库中获取数据并显示在listview中

如何从mysql中获取数据并存储在android的Sqlite数据库中

从sqlite获取的数据未显示在recyclerview中

如何根据sqlite数据库中的名称从drawable中获取图像,然后在列表视图中显示

如何在 xamarin 中的 SQLite 数据库中显示 CollectionView 中的数据?

需要帮助从 SQLite 数据库中获取数据