是否有可能將整個數據庫表,行和列取入黑莓中的表單? 我已經能夠從記錄中檢索值到richtextfield中,但我想將它們檢索到文本框,以便可以從表單更新各個列和行。 繼承人的代碼,我一直工作在檢索黑莓中的整個sqlite表
//Retrieve data
try
{
add(new RichTextField("Attempting to retrieve data from " +
"database1.db on the SDCard."));
Statement st = db.createStatement("SELECT name,email FROM DirectoryItems");
st.prepare();
Cursor c = st.getCursor();
Row r;
int i = 0;
while(c.next())
{
r = c.getRow();
i++;
add(new RichTextField(i + ".Name = " + r.getString(0) +
" , " +
"Email = " + r.getString(1))); //+
// " , " +
//"Phone = " + r.getInteger(1)));
}
if (i==0)
{
add(new RichTextField("No data in the DirectoryItems table."));
}
st.close();
db.close();
}
catch(Exception e)
{
System.out.println(e.getMessage());
e.printStackTrace();
}
在try塊中關閉db和語句會導致未來調用數據庫時出錯 – 2012-04-24 08:04:28
確定dat問題可以排序。但是我想指出的問題是我想將它們檢索到textfield.Any有關那? – techie 2012-04-24 08:23:53