python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Cannot retrieve data from SQLite in android
I am making an ecommerce app. In this app I have made a table in which I am storing the following details of products:
three images of the product;
name;
price;
description;
the unit of the material ...

user15854791
Votes: 0
Answers: 1
Issue when exporting database file to external storage
try{
File dbFile = context.getDatabasePath(context.getString(R.string.database_name));
FileInputStream inputStream = new FileInputStream(dbFile);
String outputFileName = Environment.getEx...

Ivan M.
Votes: 0
Answers: 1
Android SQLite insert method small clarification
i am learning some sqlite tutorial for android development and i try to understand this line of code:
1 ContentValues values = new ContentValues();
2 values.put(AppContract.HeadphoneEntry.COL...
Marius Nicolae
Votes: 0
Answers: 2
datatype mismatch SQLite: Android
It is giving me this error when I am adding JAVA string data to the TEXT data type is SQLite how to solve it?
public boolean addRow(Registration details) {
String userName = details.getName();
...

Kartik Tiwari
Votes: 0
Answers: 1