-2

enter image description here

In my adb shell, in the databases, when I enter:

select * from Book

Becomes this.

Gustavo Morales
  • 2,614
  • 9
  • 29
  • 37
Hugo
  • 13
  • 3

1 Answers1

0

you not selected the database. Use the command -> CD your_db_name to select your database then Use,

SELECT * FROM book;

A query normally consists of an SQL statement followed by a semicolon. (There are some exceptions where a semicolon may be omitted. QUIT, mentioned earlier, is one of them. We'll get to others later.)

Access database in android

Community
  • 1
  • 1
madhan kumar
  • 1,560
  • 2
  • 26
  • 36