A small example of SQLite search in Android _android

Source: Internet
Author: User
Tags sqlite

Name Hobby

Tom Football

Peter Basketball

What do we do if we want to look for a line of data on hobbies that are football? Find a lot of methods on the Internet, feel all say not to the idea, so wasted a lot of time, fortunately finally solved, the solution is as follows


[Java]

Copy Code code as follows:

Cursor Mcursor=msqlitedatabase.query (tablename, new string[]{"id as _id", "name", "Hobby"}, "Hobby=?", New string[]{ Hobbyinput}, NULL, NULL, NULL);

Cursor Mcursor=msqlitedatabase.query (tablename, new string[]{"id as _id", "name", "Hobby"}, "Hobby=?", New string[]{ Hobbyinput}, NULL, NULL, NULL);

Basically is such a statement how so simple a word, many people on the net write is not right, notice hobbyinput is a variable, can write football or basketball again or is you define a formal parameter

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.