Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不想使用一些额外的代码来插入、选择、更新或删除我在 Android 上的数据库。我想对所有这些都使用 SQL。可能吗?另外,你能给我一些简单的例子吗?因为,我是 Android 开发的新手。谢谢...
你有更多关于你想做什么的信息吗?您的意思是您宁愿将所有查询作为原始查询执行?如果是这样,您可以这样做:
Cursor cursor = getReadableDatabase().rawQuery("SELECT * FROM table WHERE _id = ?", new String[] { id });