Questions tagged as 'sqlite'

1
answer

Data not inserted in sqlite

I'm starting now on Android, I went to do a test of insertion of data in the bank, but the data is not inserted, I may be mistaken at some point, follow below the code: protected void onCreate(Bundle savedInstanceState) { super.onCreate...
asked by 22.09.2017 / 22:48
1
answer

E / SQLiteLog error: (1) no such column [duplicate]

I'm getting an error in my code and I can not solve it, could you give me a little help? I'm getting the error " E :    09-27 04: 04: 14,798 14342-14342 / com.pineapple.pineapple_mobi1   E / SQLiteLog: (1) no such column: Aline 09-27 04:...
asked by 27.09.2017 / 09:31
0
answers

SQlite PHP injection

Hello everyone! I am currently using sqlite in a personal project and am using this class: link When I use the query function of it, I'm inferable from SQLinjection, for example in this example: $login=$database ->get_row('SELECT * fro...
asked by 25.08.2017 / 03:17
1
answer

Popular Listview UWP C #

I'm using a database with sqlite already done and with data in my application UWP and trying to display in listview the data that is in the Marcas table. What I have done so far was to create a class Marcas :...
asked by 17.08.2017 / 22:35
2
answers

Bringing a sum in SQLite Android

I have a problem in developing an App, following, I have a list of all donation data in the database, and in this activity I created a TextView to receive the full value of those donations, however, I have some problems: 1st the value field in t...
asked by 23.08.2017 / 03:23
1
answer

How to represent in the database (android sqlite), one class that extends another? [closed]

Hello, I'm working on android, I have a case where one table extends another. example: Exercise table - > String dataInicio, String description ....... etc Football table - > String startTime, Int duration ... etc Football exte...
asked by 08.05.2017 / 14:44
1
answer

Opening a database in SQLite instead of creating it in Android Studio

Hello, I would like your help if there is a possibility to open a .db database (instead of creating the file) by android studio using sqlite. I already created a .db data file with the data and played inside the device folder (data / data ......
asked by 17.04.2017 / 20:50
0
answers

Error trying to insert data into mobile database (Android SQLite)

I'm trying to insert 864 objects into the mobile database. I can insert up to 450, but then it throws an exception: System.Argumentexception: Busy. Does anyone have any idea what's going on?     
asked by 13.04.2017 / 15:28
0
answers

How to Insert on Android?

Using SQLite and Android Studio how to do INSERT? Let's use as an example a table with the following data: Name String Int age Media double Using different data types;     
asked by 06.04.2017 / 01:15
1
answer

How to make inserts in table creation in SQLite?

I would like to know how to do INSERT manuals in the DatabaseHelper class that extends SQLiteOpenHelper. public class DatabaseHelper extends SQLiteOpenHelper { private static final String BANCO_DADOS = "Agenda"; private static int VERSAO = 1;...
asked by 20.04.2017 / 17:32