tj walker
tj walker

Reputation: 1343

how to get certain column from SQL database?

I would like to get a certain column from my sql database using the rows unique column id. For example my activity is...

public class bookLookup extends Activity {
  WebView webView; 
  private DbAdapter mDbHelper; 
  Override public void
  onCreate(Bundle savedInstanceState){ 
    super.onCreate(savedInstanceState);

    setContentView(R.layout.book_browser);
    webView = (WebView)findViewById(R.id.webkit);

    Intent myIntent = getIntent();
    myIntent.getExtras.getLong("id");

How could i take this id unique id from another activity and get a certain column from the unique id for the row?

Upvotes: 0

Views: 231

Answers (1)

Nikunj Patel
Nikunj Patel

Reputation: 22076

you have to pass one query with your DB like "SELECT ID FROM TABLE WHERE YOURCONDITION"

Upvotes: 1

Related Questions