-1

Please help me in writing the query in android development

"SELECT * FROM '" + pendingpost_tb + "'" +
" where '" + AppUtil.post_type + "'" + "=history " +
" order by '" + AppUtil.datetime + "'" + " DESC"

i want the list of AppUtil.post_type in desc order by date and time ,datetime i have fetched form the database .

4

1 に答える 1

0

あなたの発言には何かが間違っています。私はそれが作業声明だと思います:

"SELECT * FROM " + pendingpost_tb +
" where " + AppUtil.post_type +  "='history'" +
" order by " + AppUtil.datetime + " DESC"

AppUtil.datetime が列名であると確信していますか?

さらに、PreparedStatments を使用することをお勧めします。PreparedStatement がアンドロイドで利用できるかどうかはよくわかりませんが、それに相当するものがあるはずです。

于 2013-01-29T14:32:05.003 に答える