Linked Questions
31 questions linked to/from How can I list the tables in a SQLite database file that was opened with ATTACH?
0 votes
1 answer
2k views
How to get to an interactive SQLite command-line prompt in PyCharm Pro with a Django project?
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> ??...
1 vote
2 answers
2k views
SQLite select all tables DESC
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 ...
2 votes
1 answer
2k views
Query a table that schema is only known at runtime
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 ...
0 votes
2 answers
1k views
Raising exception during SQLite database connection in Python
Here is my code snippet:- import sqlite3 database = "sample.db" def dbConnection(database): try: connection = sqlite3.connect(database) db_cursor = connection.cursor() ...
-1 votes
1 answer
693 views
SQLite Log no such table [closed]
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 ...
0 votes
0 answers
855 views
How to list all table names contained in telephony.db in android programmatically
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 ...
1 vote
2 answers
531 views
Read a SQLite database in PHP? (made using sencha touch sqlite)
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 ...
0 votes
1 answer
406 views
Loop SQLite query for many databases in one directory to sort positive hits (UNIX)
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....
-1 votes
1 answer
442 views
List tables of sqlite database in chrome extension?
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 ...
0 votes
2 answers
317 views
How to INSERT information into a Sqlite database using Genie Programming Language?
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 ...
1 vote
0 answers
405 views
SQLite in memory from jar resource
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")....
0 votes
1 answer
369 views
Is there any way to check the presence and the structure of tables in a SQLite3 database?
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 ...
1 vote
1 answer
153 views
Extract tables from sql expression
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 ...
-2 votes
1 answer
147 views
Get tables name with the same query in Postgres-MySql-SQLite
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 ...
0 votes
2 answers
107 views
android sqlite no such table
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 ...