Tagged Questions
1
vote
0answers
30 views
CREATE and DROP a table while another statement is in place
In my previous implementation, I was streaming results from a sqlite3 table directly into my output application. However, since I am changing the interface to a temporary data structure, I now need ...
1
vote
2answers
56 views
How to open two SQLite contexts on the same DB in different modes?
I'm trying to use an in-memory SQLite DB and simultaneously need 2 contexts (one read-only, the other read-write). What seems to be happening is that the mode of the first context is used by all ...
-4
votes
0answers
80 views
How do I import / export file (csv, txt etc..) from an SQLite3 database using C / C++ API? [closed]
Having difficulties to find an existing library/function for importing a file into or exporting to a file from an SQLite3 database, I wrote my own functions for this purpose.
It is a (4-clause) BSD ...
0
votes
1answer
40 views
sqlite3 bus error
I'm writing an app that uses sqlite3. For some very bizarre reason, it crashes only on some machines. I was unable to reproduce the error, but a couple beta testers are reporting it. When the app is ...
-1
votes
1answer
47 views
SQLite3 connecting to C program and using inner loops to iterate through results - what do?
:D
I am reading definitive guide to sqlite (owens, allen) and decided to actually experiment with some of the code in this fine book and ran into some compilation problems. I was hoping to crowd ...
0
votes
1answer
92 views
How get number of rows result a query in SQL (C ANSI)? [duplicate]
I need get the number of row result a query in SQLite in C
Example:
SELECT name, age FROM test WHERE age > 18
How i can get the number of rows this query in SQLite C.
I see the command ...
7
votes
4answers
297 views
How to reduce SQLite memory consumption?
i'm looking for ways to reduce memory consumption by SQLite3 on my app.
It creates a table at each execution (only write, never read) with the follow schema:
(main TEXT NOT NULL PRIMARY KEY ...
0
votes
0answers
37 views
Sqlite accessing db function
I'm using the function sqlite3_prepare_v2 to access to the database but it not returns SQLITE_ERROR( http://www.sqlite.org/c3ref/c_abort.html ).I tried to use another db and it was ok.I made a new ...
2
votes
1answer
105 views
Why the interface sqlite3_get_table in SQLite C Interface is not recommended
sqlite3_get_table is defined as below:
int sqlite3_get_table(
sqlite3 *db, /* An open database */
const char *zSql, /* SQL to be evaluated */
char ***pazResult, /* Results of ...
1
vote
1answer
32 views
Creating shared library in C, problems with sqlite3
I am trying for the first time to create a shared library for using it with SWI-Prolog foreign function interface, but I am not able to get sqlite3 properly linked. I actually do this:
gcc -c -fpic ...
0
votes
1answer
32 views
Segmentation Fault using SQLite3 with C
I'm trying to make a C program work and I'm getting mad. This is my code simplified to find the error:
#include <stdio.h>
#include <unistd.h>
#include <sqlite3.h>
int main(){
...
0
votes
1answer
52 views
How do I grab the error code if sqlite3_prepare_v2() returns one?
Largely following Ray Wenderlich's SQLite tutorial, I'm writing a fairly straightforward app that displays information pulled down from a server. The basic structure of my SQLite queries (to the local ...
0
votes
0answers
72 views
Debugging C program that utilizes sqlite DB
I am trying to debug a program written in C. This program uses sqlite3 to load data from db file. The program works fine, however when I am debugging it using DDD I get the following error:
Can't ...
0
votes
1answer
70 views
confusion on sqlite3 struct in sqlite3 source code
in the function
static int sqlite3Prepare(
sqlite3 *db, /* Database handle. */
const char *zSql, /* UTF-8 encoded SQL statement. */
int nBytes, /* ...
1
vote
1answer
64 views
Preparing a statement causes SQLITE_IOERR_LOCK when db-journal file exists
I'm having an issue using the sqlite3 API in C (Linux RHEL5, 64 bit) to recover from a crash where I'm left with a .db and a .db-journal file.
If I examine the .db file with the sqlite3 binary ...
3
votes
1answer
179 views
valgrind reporting “Invalid write of size 8”
I'm chasing down an segmentation fault with memory allocations, so I've decided to run my application with valgrind. At an unexpected location (but maybe relevant) I've run into "Invalid write of ...
0
votes
1answer
117 views
SQLite WAL mode with multiple transactions in multiple threads
Can sqlite have multiple transactions on a same database at the same time with WAL mode?
Here is a sample application that spawns 500 threads and each thread creates a new sqlite connection. ...
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
104 views
Sqlite3.c query execution and database closing error in C, C++ project in eclipse
I am using eclipse in ubunt 12.04 in my C/C++ project and I am getting following error when trying to execute a query.
I have posted the stack as well as query to execute and syntax:
this one ...
0
votes
2answers
241 views
How to use sqlite3.c and sqlite3.h in eclipse C/C++ project
I am trying to use amalgamated version of sqlite3.c and sqlite3.h in my C/C++ project. It has code in both C and C++. I am using eclipse IDE in UBUNTU 12.04.
Now my problem is that after having ...
1
vote
1answer
29 views
Set group writeable when opening DB with SQLITE_OPEN_CREATE
When I create a new database with sqlite3_open_v2(path, db3, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL), the created database will have -rw-r--r-- even if the parent folder has drwxrwsr-x.
Is ...
0
votes
1answer
74 views
how to convert single digit value to date format supported by sqlite3? [ value 0 padding]
According to the sqlite3 manual, it says the format should be YYYY-DD-MM.
What if i have a variables with 842, 2, 4, and how to convert into the same format?.
I tried with both the functions, ...
3
votes
2answers
49 views
date handling in sqlite3 confusing.
I am from non database background. I have created a table with one of the field data type TEXT.
dataF TEXT
INSERTION:
Have inserted three records with the values :
'842-2-4'
'842-2-5'
'842-2-6'
...
1
vote
1answer
216 views
sqlite3_step : how to parse the output more than once ?
Is it possible to re-use the sqlite3 output?I have query like this :
error = sqlite3_prepare_v2(conn,SQL_STMT_GET_FILE,-1, &res, &tail);
error = ...
0
votes
2answers
26 views
sqlite3, best way to retrieve row elements by index?
I am using sqlite3, and table has 25 entries. I execute:
select * from mytable;
and using sqlite3_step to retrieve each row, and to get the column,
sqlite3_column_int(stmt, 5);
I am using the ...
1
vote
1answer
55 views
C GUI program crashes during runtime
I'm writing a C GUI program using graphApp GUI library and this code segment cause my program to crash:
...
char *str,*sql;
// Read input from text field
str = get_control_text(event_name);
// ...
1
vote
1answer
115 views
Sqlite3 C API number of rows
Can I use SELECT COUNT(*) from tableName in a C program?
If so, how do I fetch the results? I don't want to use a loop because I only want the number of rows, not the data.
1
vote
1answer
52 views
SQLite3 in memory datafile
Any one know what happens to a in memory datafile when the process is forked and the parent process closes the in memory datafile. My understanding was that it should be in scope in the child process.
...
0
votes
1answer
121 views
sqlite3 programming got “out of memory” in Linux C
My code is very simple, just create a empty table. This is my code:
#include <stdio.h>
#include <stdlib.h>
#include <sqlite3.h>
int main(int argc, char *argv[])
{
sqlite3 ...
1
vote
1answer
119 views
Create SQLite3 tables with C, but got an empty database file
This is my code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sqlite3.h>
#define DBFILE "./userinfo.db" //It's empty file
int main(int argc, char ...
0
votes
1answer
138 views
sqlite3_open how to determine if file database created freshly?
Newbie to sqlite3.
Correct me if my understand is wrong?.
sqlite3_open ( filename, &dbConnection) ->
1) This API creates an database [ie: filename], if it does not exists, and sets
the ...
0
votes
1answer
39 views
How to get data from an sqlite3 prepared statement with 'union all' clause
I got three SELECT statements connected with UNION ALL. I set up the compound statement such that sqlite3_prepare_v2() would prepare the resulting rows for me. If I were to make use of the resulting ...
0
votes
0answers
85 views
inserting data in sqlite3 through C
I have a problem about inserting data into a sqlite3 database. The database permissions were set to 777 (just for the development environs), and the same goes with the directory.
#include ...
1
vote
1answer
60 views
Need Help in Faster Algorithm and Code-checking - comparing values to database data
I need help in developing a faster algorithm to be used in my CGI file (using C). I have four sqlite3 database tables that contains two parameters attack_type and defend_type. These tables are mod_no, ...
2
votes
3answers
102 views
sqlite3 (language C): no such column
I want to save the data from USB into the database sqlite3.
Here is data from USB
char T0[8], T1[8], T2[8], T3[8], T4[8];
I create a table with
const char* Temprature_table = "Create table ...
2
votes
1answer
324 views
How to debug SQLite source code with Visual Studio
I would like to debug an instance of a SQLite database created from modified SQLite code. As a user selects some data from the database I'd like to step through the SQLite source code and see what the ...
0
votes
0answers
149 views
LIbrary Routine Called out of Sequence Error
Why can't I insert to my database? I've read multiple threads regarding this error and all of their problems were that they forgot calling open for the database. Help?
sqlite3 *data;
sqlite3_stmt ...
0
votes
2answers
126 views
Lua: how to embed luasql.sqlite3 in a C program(statically linked)?
luasql.sqlite3 module has been compiled into my C program successfully, statically linked. But, It seems the module has not been registered yet. The call of "require 'luasql.sqlite3'" always fails in ...
0
votes
1answer
75 views
Freeing the zSql arg to sqlite3_prepare_v2?
If I have a dynamically allocated string containing the query I am passing to sqlite3_prepare_v2(), when is it safe to free this string? Immediately after sqlite3_prepare_v2()? After sqlite3_step is ...
4
votes
1answer
218 views
Does SQLite leak memory with the SQLCipher extension?
I'm using SQLCipher to store an encrypted SQLite database. However, when I use sqlite3_key to encrypt the database, I start getting a memory leak. Observe the following sample:
#include ...
1
vote
1answer
961 views
How can use FMDB as a Framework in an iPad application?
I am currently developing an iPad application. At one stage, there is a series of sliders and buttons, when you press the button, it stores the value of the slider into a table. First of all, I need ...
0
votes
1answer
56 views
How to check table already created or not in SQlite3
I am creating a table using create table ... (sqlite3_open() and sqlite3_exec()) but I don't know how we know that Database file is already created or not.
1
vote
3answers
468 views
Exporting the sqlite3 table into file using “C” execute API
I am using sqlite3 version 3.6.23.1 in fedora 14.I am able to export table into the file using command prompt like this,
sqlite3 data.db
sqlite> .output sample.txt;
sqlite> select *from ...
-6
votes
1answer
92 views
callback function having issues with extracting double pointer [closed]
// issue with the following not returning info or just stalling... but no errors
static int callback(void *voidParam, int argc, char **argv, char **azColName)
{
static int k = 0;
myReturn ...
0
votes
1answer
71 views
Get column type per row
I have a table with a few rows. The datatypes are not set in the table structure and some rows are integers while some are BLOBs.
How would I figure out what's what? I'm using the C API.
...
1
vote
0answers
87 views
how to check default column value in sqlite3 is set to infinite in “c” / native sqlite3
I have attempted to establish a graph using sqlite3 as follows, and just wanted to know how I may check that the "infinite" value in the graph is treated as infinite by sqlite3.
sqlite> create ...
0
votes
0answers
167 views
sqlite crypt with sqlite3 libraries [closed]
I am planning to use SQLite Crypt to encrypt my SQLite database files. I am not sure if SQLite Crypt comes with all necessary SQlite C API's to create/modify database tables or if I have to build ...
1
vote
0answers
176 views
Using special character in full text search in sqlite3 (FTS4)
I am using sqlite3 on Linux via C library(if it matters) for full text search and the database in question is a FTS4
I store some filenames in the database and I search them as:
SELECT file_name ...
1
vote
0answers
74 views
SQLITE3, GtkTreeView and C?
The below given code is not displaying the list from sqlite3 database. Every thing goes right, the compilation and other stuffs, the package runs softly but no list in the gtktreeview.
void
...
5
votes
4answers
3k views
c++ : Create database using SQLite for Insert & update
I am trying to create a database in c++ using sqlite3 lib.. I am getting error sqlite3_prepare_v2'
was not declared in this scope as shown in logcat.
log file
..\src\Test.cpp: In function 'int ...
