Tagged Questions
0
votes
2answers
13 views
Create View of MYSQL to sqlite3
I have this two views in mysql and I when I execute they in sqlite3 throws me the error
Error: near "("
I have cheked it: http://www.sqlite.org/lang_createview.html
The Views:
CREATE VIEW ...
1
vote
1answer
41 views
Load Error - Using MySQL with Ruby on Rails
I have been trying to use SQL with Ruby on Rails for quite sometime now and cannot seem to make it work.
I've pretty much given up on SQLite, so my focus is now on MySQL. I have fully installed the ...
-2
votes
3answers
63 views
SELECT Query Best practice
I know that SELECT * is considered bad practice since it can return un-needed information.
But what about this:
Say i have a table with 4 columns, columns 1-4
Is there any difference (like fast, ...
-2
votes
1answer
53 views
Load data according to database column value in PHP [closed]
I have a column called Type in my database table.
My web page has different user input fields for each type.
What i want to do is, when a page is loading, show fields according to first type. Then ...
1
vote
2answers
49 views
Rails - Sqlite vs Mysql syntax error
I have the following query that is working good on Sqlite3 (dev env) but fails (SyntaxError) on MySQL (prod env). I have tried different resolution but I can't find where is the problem:
data = ...
0
votes
1answer
43 views
Error when trying to run Node.js Ubuntu project in Mac:
I am working with Node.js, Express.js and sqlite3 to create a small website.
I have developed my project in Ubuntu and I have been trying to get it to work in Mac also.
But after I svn checkout from ...
0
votes
1answer
36 views
SQLite database for heavy read only production website
I have a Ruby on Rails web application that will require about 50 writes to the database to configure itself. Then the rest of the life of the application it will be involved with reading the ...
0
votes
1answer
52 views
Integrity error django
I was using sqlite3 for my database in django project and then I decided to change it to mysql engine. I changed everything in the settings.py correctly, and in order not to lose the db I dumped my ...
0
votes
1answer
29 views
ActiveRecord Grouping and associated fields
Suppose I have a Relationship table documenting relationships between users and mentors. I want to retrieve the newest (i.e. latest) mentor for each user.
Relationship.selects("MAX(id) AS ...
0
votes
0answers
75 views
sqlite3 query to php to create csv as an email attachment
I need to email the results of a sqlite3 query as a .csv attachment.
As I have been researching this, it appears I need to do the following:
1. Using sqlite query on local db (iphone app), get data ...
1
vote
1answer
41 views
MySQL(?) to SQLite
I want to add this into SQLite, but I can't get alter table to work with add foreign key.
It looks like this:
create table Medlem
(Mnr integer not null,
Namn varchar(6),
Telefon varchar(10),
primary ...
0
votes
2answers
22 views
Structuring a Database That Counts Similar Entries
I'm new to databases. I'm organizing music using mysqlite3. I have ArtistName, SongTitle, and AlbumTitle fields in the Music table. The primary purpose of the database is to query it and return all of ...
0
votes
0answers
84 views
“QSQLITE driver not loaded” Qsqldatabase error
I am facing an issue with QSqlDatabase.
I get an error saying, "QSqlite driver not loaded".
To analyze it we have implemented a sample test code.
#include <iostream>
#include <QtSql>
...
0
votes
2answers
54 views
How to query for MySQL database schematic
In Sqlite, I can query for tables names and their structure like this:
SELECT name, sql
FROM sqlite_master
WHERE type = 'table' AND Name NOT LIKE '%sqlite%'
I want to query for database ...
0
votes
2answers
55 views
ActiveRecord query works fine on sqlite but fails in mysql
Folks,
I have an activerecord statement that works fine on my development machine which uses sqlite3 but when I run this same code in production which uses MySQL this fails. The code is below:
avail ...
0
votes
1answer
164 views
backup mysql database and convert it to sqlite to use it in c#
my project manager asked me to do the following:
-backup data from mysql database that is on the server
-convert this data to sqlite
-add it to a windows form application that read from this sqlite ...
-1
votes
2answers
113 views
How much data can 1GB MySQL handle [closed]
I am going to launch a startup that will have many users, and I want to store a huge amount of data in the database. Some friend out there suggested me some HostingProviderA. (name not enclosed)
I ...
1
vote
1answer
164 views
Calculate lower and upper quartile of SQLiteDB via query
I want to calculate the upper and the lower quartile of the value what I call "diffs" in these fiddle with my DB and the query
How can I do this with SQLite?
There's an extension on the ...
0
votes
1answer
91 views
SQLite migration removes 'add_index' and 'add_foreign_key' from schema.rb file
I use SQLite3 and MySQL on the same Rails project but on two different computers. I noticed that the schema.rb which is generated when I run all migrations looks different for both environments. When ...
0
votes
1answer
90 views
sql for a fuzzy search query
I have an sql query for a mysql database that includes the following
where("UPPER(CONCAT(firstName, ' ', lastName)) LIKE ?", params[:query])
Since sqlite3 doesn't have the concat function, but ...
-1
votes
4answers
736 views
Sqlite3 vs Postgres vs Mysql - Rails [closed]
I guess this has been brought up many times, but I'm bringing it up again!!!
Anyway... In Ruby on Rails Sqlite3 is already setup and no extra picking and slicing is needed, but...
after numerous ...
0
votes
1answer
55 views
Ways pass to data between a C program and a Ruby on Rails application
I want to implement an algorithm that:
takes database objects from a Ruby on Rails application as inputs,
performs calculations on the inputs,
queries the Rails database based on the calculations, ...
0
votes
0answers
131 views
Rails ActiveRecord issue UPDATE with JOIN. Ambiguous column
I'm trying to support both MySQL, and Sqlite3. That's the beauty of ActiveRecord right?
Here is the rails code doing the update:
InfoJob.joins(:job).where(:job => {:type => ...
1
vote
2answers
489 views
How can I convert MySQL database file (.sql) to SQLite file in PHP?
I have a MYSQL database dump file in ".sql" format but I have required "SQLite" file,
is it possible to convert .sql file into SQLite file using php script or any other way?
I have also tried shell ...
1
vote
5answers
84 views
Retrieve count of data from SQLite in Android
I'm having a little trouble when trying to come up with the command to count the number of letter "B" in the level "2".
_id|letter|level
0 A 1
1 A 1
2 B 1
3 A 2
4 B ...
2
votes
2answers
68 views
Ruby is trying to use SQLite while I set up MySQL?
Yes, this question has been asked before. 2 years ago. I felt bad about bumping it up, and figured it'd be a better idea to start a new thread.
Much like the other question's OP, I have generated my ...
2
votes
4answers
108 views
show by example: row vs field?
Various documents define row as being synonymous with record. Unfortunately, a record can be a list or a single item. All the same, a row usually contains more than one item but is sometimes called "a ...
3
votes
1answer
141 views
What alterations do I need to make for my Flask python application to use a MySQL database?
I am new to developing applications, and I have been trying to familiarize myself with doing so with Flask. I followed their great tutorial and read their equally-detailed documentation to create my ...
0
votes
3answers
55 views
Sort by different columns
I have this data, in a table categories
id | name | post_count
1 | A | 10
2 | B | 15
3 | C | 8
4 | D | 14
5 | E | 1
6 | F | 20
I want to fetch the top 4 categories, by ...
1
vote
0answers
92 views
QSqlDatabase::addDatabase() check if host exists
Currently I'm working on a C++ application using the qt framework to read a specific database from a mysql server or a sqlite3 file. I have the main UI to display the data and a login-dialog to ...
1
vote
1answer
108 views
Sorting strings with numbers and text in Rails
In my database I have table with a name column containing grades, like 1. grade, 2. grade, and so on. When the numbers have reached 10 or more, the sorting doesn't work as I would like, as 10. grade ...
0
votes
1answer
121 views
sqlite not saving decimals but works fine in MySQL [duplicate]
Possible Duplicate:
How to convert Python decimal to SQLite numeric?
I am having an issue with sqlite not showing values that are not 2 decimal places but when I test it on MySQL ...
0
votes
2answers
91 views
SQL Query with Count
I have the following tables:
list
id - key
name
item
id - key
name
list_item
list_id - foreign key to list table
item_id - foreign key to item table
I have the following query:
SELECT ...
1
vote
1answer
60 views
How to find the maximum number of entries in a table that have a column that satisfies a certain condition?
I'm not entirely sure how to phrase this question simply, so I will be taking suggestions to rename my question. I apologize in advance for how idiotic this question might seem, but I'm having one of ...
1
vote
2answers
258 views
Python sqlite3 placeholder
is there a way to set the placeholder for queries in sqlite3 ?
I have some functions that work with a database and it would be more satisfying if they could work both with mysql and sqlite.
Mysql and ...
0
votes
1answer
34 views
Rescuing all ConstraintException instead of shutdown
I'm facing a trouble with my application: I have a constraint on my database where trip_id + trip_level_id must be unique.
Now, this is at database level (no validation), if I try to add an item with ...
1
vote
1answer
168 views
Add a primary key constraint in a RoR schema
In our web application our tables have a "GUID" ID held in an id field.
By investigating the actual SQL code that is used to create the DB, we saw that our ID are actually not delayed as primary keys. ...
0
votes
1answer
115 views
convertion from mysql to sqlite
i'm trying to convert a MySql data base to Sqlite but i'm facing a problem with the unique constraint of primary key, here is my MySql table code:
CREATE TABLE `table01` (
`idtable1` INT(11) NOT ...
0
votes
1answer
85 views
Looking for database training (using MySQL and SQLite from Ada/C and other languages)
I'm developing software using multiple programming languages for more than two decades. However I never used any databases so far. I'm now in the position that I should do some work with MySQL and ...
1
vote
1answer
117 views
SQL: creating unique id for item with several ids
I've been pondering this problem for a while and can't find the solution (It might be simple.)
I have a table with two columns which shows which ID's are connected, that is, belonging to the same ...
0
votes
2answers
114 views
Sqlite 3 Insert and Replace fails on more than 1 unique column
I am using a table to store votes of different users on different polls.
Table has following structure.
id | poll_id | opt | ip_address
id : auto increment
poll_id : (STRING UNIQUE) ...
0
votes
1answer
107 views
Do changes in SQLite automatically get reflected in MySQL? [duplicate]
I am new to using services. In my application I want to run services in the background. I am creating the same database in MySQL server and SQLite. If I change some data in a table in the SQLite ...
0
votes
0answers
69 views
Rails production mysql development in sqlite3
I have a production sever that runs mysql and I do my development in sqlite3. I've always made sure I didn't use to many fancy query's but this one really bugs me.
In sqlite 3 I have the following ...
2
votes
1answer
58 views
Sqlite query creating issue
There are 2 tables
table1 table2
book_id | tag_id tag_id
---------------- -----------
5 | 1 1
5 | 3 ...
0
votes
1answer
27 views
I want to to join client's sqlite3 db table with server's mysql db
client's db (ios sqlite3)
id pressed
1 1
2 1
3 1
4 0
5 0
server's db (mysql)
id title
1 a
2 b
3 c
4 d
5 ...
0
votes
2answers
286 views
ActiveRecord : Delete duplicate records
If there are multiple records on a specific date I want to remove all but latest record on that day. For example in below table records with id 9, 10, 12 have same date. So 9 and 10 should be removed ...
0
votes
3answers
630 views
Rails 3.2.3 wants sqlite3 gem on mysql production env
I have a Rails 3.2.3 application which gets deployed with Capistrano. Until now, this workflow worked perfectly for several months now. But since the last deployment of the latest changes, the rake ...
18
votes
3answers
541 views
Why does SELECT results differ between mysql and sqlite?
I'm re-asking this question in a simplified and expanded manner.
Consider these sql statements:
create table foo (id INT, score INT);
insert into foo values (106, 4);
insert into foo values (107, ...
0
votes
1answer
99 views
Can sqlite3 handle 30 concurrent update requests gracefully?
We like the simplicity of sqlite3 but are concerned about its ability to handle concurrent updates gracefully. Our web app is for about 30 users (50 users maximum) who has rights to update and a ...
0
votes
5answers
193 views
Differences between SQLite and MySQL - login and security
At first I searched in Stack Overflow about the difference between MySQL and SQLite. So there is some answers but still I want to know something. When accessing MySQL I need to give host, username, ...

