Questions tagged [sqlitestudio]

SQLiteStudio is a DB manager for SQLite databases

SQLiteStudio is a Windows-base DB manager for SQLite databases

90 questions
0
votes
2 answers

System.Data.SQLite slow execution of large script

I'm trying to run an SQL file from my .NET application but the run time is extremely slow. I'm not sure how to optimize it to run faster. I know that the script works because when I run it in the SQLite shell application it executes in less than 1…
0
votes
1 answer

sqlite3.dll can't select records visible in sqlite studio

I'm using version 3.21.0 of sqlite3 library on Windows 7. And version 1.0.0.0 of SQLite Studio I have several processes queuing data to be process in an sqlite3 table. When there is data to be queued, a database connection is opened, a record is…
tdemay
  • 649
  • 8
  • 23
0
votes
1 answer

SQLite3 error: row value missused

I'm trying to use two UPDATE queries on my database: UPDATE equipment SET equip_level = 'Hero' WHERE equip = ('Amulet of Immortality'); UPDATE equipment SET equip_level = 'Master' WHERE equip = ('Shield of Pitch Black', 'Blade of MageBane',…
Bishop Minter
  • 107
  • 1
  • 3
  • 11
0
votes
1 answer

How to check for overlapping intervals when entering data in SQLite3?

I need to place a check in my SQLite3 database that ensures that the user cannot enter data with overlapping intervals. For example: hole # Sample From To 1 1 1 2 1 2 2 3 1 …
joswhite
  • 35
  • 5
0
votes
2 answers

Update + Set + Where updates row but no results

OK, so I am trying to update what is in my table and I want the results without having to do two separate queries. I'm using SQLiteStudio. If I try to do two queries at the same time when I press F9 (Update + Set + Where; and Select + From;), it'll…
rumpled105
  • 27
  • 5
0
votes
1 answer

How to create a password protected DB in SQLiteStudio

Does anyone know how to create a password protected file in SQLiteStudio 3.1 ? When I try to make a DB with type SQLCypher, trying to follow the steps in the youtube guidance, I allways end up with a file I can connect to, even without a…
mvdn
  • 21
  • 1
  • 9
0
votes
1 answer

list all fields in a DB and how often then appear - SQLite 3

In SQLite 3, I'd like to build a piece of SQL (or otherwise - as long as I can execute it with a basic SQLiteStudio install for example) that can read from all the tables in a given db, and list their fields and how many times they appear across all…
G.Andre
  • 1
  • 1
0
votes
0 answers

Change column data type to decimal in SQLiteStudio is not working right

I have imported CSV file in SQLite Studio. I know want to change column data types and I have problems with decimal numbers. In column X I have numbers like: 636000 432.25 4.49 8.96 269906.81 6.26 Then I want to convert them to decimal(10,2)…
ketic
  • 1
0
votes
1 answer

SqliteStudio AndroidDb: successful setup but fails to connect

I'm running SqliteStudio 3.0.7 on Ubuntu 15.10. I can't seem to get the USB/sqlite3 mode working for the Android Studio (2.1.1) emulator, nor for Genymotion, on a 4.4.4 ROM (sdk 19). AFAIK the app is built in debug mode; I only run it using…
Autumn
  • 3,214
  • 1
  • 20
  • 35
0
votes
1 answer

change the default setting for the SQLite query record output limit in SQLite studio 3.0.7

How to change the default setting for the SQLite query record output limit in SQLite studio 3.0.7 ? it is alway 1000 records even though i used : select * from mytable limit 2000; It was mentioned in…
Lily
  • 295
  • 1
  • 4
  • 14
0
votes
2 answers

How do I transfer a database from SQLiteStudio to an Android phone?

I have created a database in SQLiteStudio. The database consists of a single table, with columns 'Name', 'Age' and 'Occupation', and several rows of data. I want to transfer that database from SQLiteStudio to an Android phone. How would I do this?
DinnerPlate
  • 17
  • 1
  • 8
0
votes
1 answer

How do I add data to a table in SQLite Studio? (error occuring)

I am using SQLite Studio version 3.0.7 (which I assume is the latest version) to create a table. I have added 2 columns (name and age), and now I wish to add data into the table (eg. John age 30, Adam age 50). However, it's not actually letting me…
DinnerPlate
  • 17
  • 1
  • 8
0
votes
1 answer

Why is this error in SQLiteStudio showing up?

I made a table in SQLiteStudio in DDL: CREATE TABLE "City " ( Name STRING, Population INTEGER, Country STRING, Elevation INTEGER ); However, when I start doing queries such as this: Select AVG(Elevation) From 'City' Where…
0
votes
1 answer

Populating SQLite table with Tcl script in SQLiteStudio

I'm trying to populate two INTEGER fields of a table in SQLite Studio with Tcl script feature of SQLiteStudio. The table itself is a representation of a m✕n rectangular matrix, where those two fields represent elements' indices. CREATE TABLE matrix…
0
votes
1 answer

create temp table in sqlite function

I have function in sqlite and I want to use temp table for declaring variables in this function. when I use this query out of function, it works, but use it inside function, returns null value. problem is cause of using temp table in function. what…
Reza Akraminejad
  • 1,412
  • 3
  • 24
  • 38