I\'m making an application Maps connected with SQLite which there are markers, but there is an error that the database can not be recognized, why did it happen? Can anybody help
marker.db
as a table name tells to look up a table name db
in database marker
and you don't have the database marker
attached.
Either write the table name in double quotes like "marker.db"
, or better yet, rename the table to something that better resembles whatever you're putting in there, without a .
.