Linked Questions

0 votes
1 answer
2k views

My Django project uses an SQLite3 database. How can I get to the SQLite command line shell? PyCharm has lots of other handy interactive windows manage.py utility console Python console sqlite3> ??...
Bob Stein's user avatar
  • 17.5k
1 vote
2 answers
2k views

I have found the solution to get all tables in SQLite here. How to list the tables in an SQLite database file that was opened with ATTACH? However, when I change: SELECT name FROM sqlite_master ...
Valentin Grégoire's user avatar
2 votes
1 answer
2k views

We are creating a WinStore application using C# that stores some data locally within a SQLite database. We are currently using the SQLite-net library to access the database. There are a number of ...
Scott's user avatar
  • 45
0 votes
2 answers
1k views

Here is my code snippet:- import sqlite3 database = "sample.db" def dbConnection(database): try: connection = sqlite3.connect(database) db_cursor = connection.cursor() ...
Aman Seth's user avatar
  • 129
-1 votes
1 answer
693 views

I have created a database for username and password, it worked fine when I was at my other computer now on this computer I get the error that the table does not exist, I can't understand why it is not ...
user3535757's user avatar
0 votes
0 answers
855 views

I have tried to get the table names from android mobile programmatically using the following code: Cursor tableCursor = getContentResolver().query(Uri.parse("content://telephony/sqlite_master"),new ...
bbsk's user avatar
  • 11
1 vote
2 answers
531 views

I have an SQLite database made using the SQLite port in Sencha Touch (here) and the database name is "cars" without the quotes and the table inside it is called "cars_table" without the quotes. I am ...
Calvin's user avatar
  • 309
0 votes
1 answer
406 views

I have a directory with lots and lots of SQLite database files. I need to run an sqlite3 query to establish if any database in my directory contains a specific table. Database filenames go like 001....
Sazzy's user avatar
  • 2,024
-1 votes
1 answer
442 views

I'm using sqlite manager extension in chrome to use sqlite database.I have a sqlite database.This extension works properly with select delete alter commands.but the problem is i can't list tables of ...
Ravindranath Tagore's user avatar
0 votes
2 answers
317 views

This question is a spin off a previous question here in which a database was created. However, when it comes to add information to that dataset I can go manually adding information or going via a ...
lf_araujo's user avatar
  • 2,053
1 vote
0 answers
405 views

I want to use SQLite in memory mode, and load a DB file that is stored inside the jar. Seems like SQLite can't find/load the file. Here's my code: String dbpath = Resources.getResource("my-db.dat")....
danieln's user avatar
  • 4,993
0 votes
1 answer
369 views

I'm developing a Rust application for user registration via SSH (like the one working for SDF). I'm using the SQLite3 database as a backend to store the information about users. I'm opening the ...
user avatar
1 vote
1 answer
153 views

I'm try get name of tables in sql expression using sqlite3 API. Example: select * form table1, table2, table3; Sqlite3 API only return data of statment and only have information of name of columns ...
Jones's user avatar
  • 1,500
-2 votes
1 answer
147 views

i'm working on a school project and i'm building a little server in NodeJS for our project, one of my tasks is to find a way to get the tables name of all "user"tables in the selected ...
Signori Andrea's user avatar
0 votes
2 answers
107 views

I'm using a premade database and I seem to be getting an error when I try to update a row. The exact error from logcat is: (1) no such table: AUD. Heres what my dbhelper class looks like: public ...
SpecialSnowflake's user avatar

15 30 50 per page