ถ้าต้องการเอาค่าตัวเลขใน row 1 + row 2 หรือ บวกไปเรื่อยๆ
ต้องเขียนยังไงคะ
ดูข้อมูลเพิ่มเติมเกี่ยวกับนโยบายความเป็นส่วนตัว และการใช้คุกกี้ของเราคลิก
คุกกี้เหล่านี้มีความสำคัญต่อการให้บริการบนเว็บไซต์แก่คุณ และเพื่อให้คุณสามารถใช้คุณลักษณะบางอย่างได้ คุกกี้เหล่านี้ช่วยในการยืนยันตัวบุคคลของผู้ใช้งานและช่วยป้องกันการปลอมแปลงบัญชีผู้ใช้งาน หากไม่มีคุกกี้เหล่านี้เราอาจไม่สามารถให้บริการแก่คุณได้ เราใช้คุกกี้ดังกล่าวนี้เพื่อให้บริการแก่คุณ
แม้ว่าอาจเกิดคุกกี้ แต่อาจไม่สามารถบันทึกได้เนื่องจากมีสมุดบันทึกที่คุณสามารถอัปเดตได้เว็บไซต์นี้อาจมีคุกกี้หรืออาจเกิดคุกกี้ใหม่อีกครั้ง
ดูข้อมูลเพิ่มเติมคลิก
หายไปไหนกันหมด ผู้รู้ไม่มีคัยตอบเลย ;(
These are inexpensive and may be found pertaining to $1 at the greenback retailer, or even a smaller amount in big amounts, if you plan ahead of time Find the gowns than can accentuate the best features This knot will provide very warm feel around neck and suits to your almost all outfits Whatever it maybe, when people are ready to embark on their shoe shopping venture, they will be waiting to ensure that they only get the Top fashion of the world shoes and something that is totally stylish and way comfortable
Custom Banner designs iFashion conscious women usually keep tabs on the variety of heels in the market, from peep toes and sling backs to stilettoes so as to be able to have the perfect shoe type for the perfect occasionThe aluminum briefcase is the most visible of your accessories It is much better for you to pick the cabinet with louver doors
Often, customer choice, a accouterment brand, or a section of clothing, not to see it added expensive, added good, added is the cast to back to us what But other than that, this is a no-business dive watch with a classic round dials Jeans are made of different types of Denims particularly of four types, Dry, Selvage, Washed and Color Next is the budget constraint; it is imperative for you to self analyze how much you want to spend on these fashion accessories
Having a unique designer bag can present the planet exactly how you define yourself: gorgeous, elegant having an individual flair It is always best to think about your purchase and to avoid impulsive shopping Belt buckles having a cat figurine is the trendiest nowadaysThree stone engagement rings come in such an array of settings it could be hard to determine what to do next, and you may find your self overwhelmed
相关的主题文章:
ตามลิงค์นี้เลยครับ
http://ideone.com/FT1tj
ขอบคุนมากเลยค่ะ ; )
แต่ขอถามอีกหน่อยนะคะ
นู๋เขียนแบบนี้แล้วมัน force close อ่าค่ะ
ส่วนของ DataBaseAdapter
public Cursor fetchfood(String food_id) {
return mDb.query(DATABASE_TABLE3, new String[] { KEY_FOOD_ID,
KEY_FOODBALANCE }, “food_id = ‘” + food_id + “‘”, null, null,
null, null);
}
ส่วนของ อีก class นึง
if (text == “Food”) {
mDbHelper.savefood(_balance, _order, _remark);
Cursor cursorfood = mDbHelper.fetchfood(text);
if (cursorfood != null) {
int sumRow = 0;
while (cursorfood.moveToNext()) {
try {
sumRow += cursorfood.getInt(0);
} catch (Exception e) {
Log.d(“DEBUG”, e.toString());
}
}
Toast
.makeText(EasytyWallet.this, sumRow,
Toast.LENGTH_LONG);
}
cursorfood.close();
mDbHelper.close();
}
ลองหาตัวอย่างดูคับ มีเยอะแยะ
อันนี้แถม http://dl.dropbox.com/u/9192809/doc/Thaijavadev.rar
ขอบคุนนะคะ
จากที่ดูโค๊ด ยังหาไม่เจอครับว่ามี Bug ตรงไหน (ตาลาย) ^ ^
แต่ถ้าจะลองดูจริงๆ ผมจะสันนิษฐาน ตรงส่วนของตัวที่ติดต่อ Database ก่อนครับ
ลอง Debug ตรงส่วนนั้นดู เช่น ตอนเรียก Query, ตอน fetch ข้อมูลมาที่ Cursor เป็นต้นครับ
สาเหตุส่วนใหญ่จะมาจากตรงนี้
อีกที่นึงครับ
Toast.makeText(EasytyWallet.this, sumRow, Toast.LENGTH_LONG);
ถ้าต้องการให้ show อย่าลืม .show() ด้านหลังด้วยนะครับ ^ ^