0
votes
1answer
19 views
SQLite3 problem with nginx/passenger
Hi
I'm trying to access my web app built with rails. But when I type the URL I get:
500 Internal Server Error
If you are the administrator of this website, then please read this …
0
votes
5answers
995 views
How to set Sqlite3 to be case insensitive when string comparing?
I want to select records from sqlite3 database by string matching. But if I use '=' in the where clause, I found that sqlite3 is case sensitive. Can anyone tell me how to use strin …
0
votes
1answer
14 views
strange iphone sdk sqlite memory leak
Hi guys, I have a very strange memory leak problem, it seems that sqlite3_step is doing some nasty stuff :|
I spent almost 4 hours trying to fix this but no luck till now :(
Here …
0
votes
2answers
37 views
Is dynamically linking against the Sqlite library safe on the iPhone?
The concern is guaranteeing compatibility with the Sqlite Header file compiled into the iPhone app. What if the header file used at compile time is from a newer version then the dy …
0
votes
2answers
100 views
Rails does not recognize sqlite3 REAL datatype
I have created the following table in sqlite3:
CREATE TABLE Test (
Id TEXT PRIMARY KEY NOT NULL,
Count REAL
);
But when I try to generate a model for this …
0
votes
0answers
8 views
Best way to store data for iPhone Profiles app
Im writing a profiles app that will allow the user to create a custom profile (as in Bluetooth, hone, Vibrate, WiFi, etc.). Im not sure what the best or EASIEST (less code) way to …
0
votes
1answer
42 views
SQLite Transaction not committing
For an application we are developing we need to read n rows from a table and then selectively update those rows based on domain specific criteria. During this operation all other …
0
votes
1answer
13 views
Ruby “No Such File To Load - sqlite3” on OS X
I was trying to create a quick little script that would insert data into an SQLite db for me but I can't get past the first few steps.
I have done "sudo gem install sqlite3-ruby", …
1
vote
3answers
61 views
What is the best way to write a validation layer for SQLite
I'm using an ADO.net provider of SQLite. I want to steer around some of the "features" of SQLite, like allowing a string in an integer field and allowing a string longer than n in …
0
votes
2answers
24 views
changing image dynamically in iPhone application.
Hi,
My problem is,
I have table of names. And when I touch on each name, a new view should appear and image of corresponding name.
For all the names only one view should be there …
1
vote
2answers
63 views
Perl-SQLite3: Basic Question
I admit it's been a while since I've used Perl, but this has me stumped.
Here's the issue:
#!/usr/bin/perl
use CGI::Carp qw(fatalsToBrowser);
use DBI;
print "Content-type: text/ …
0
votes
1answer
47 views
How to copy data from an Oracle table into an SQLite Table using ado.net and few lines of code.
Hello:
I need to do a generic C# program to let the data reading from an Oracle database table (T1) with, for example, field names a, b, c, d, and saving into an SQLite3 table (T2 …
0
votes
1answer
22 views
Rails add_test_data migration
Hey Guys,
Just working through the Agile Web Development with Rails book and near the closing chapters of the book I had to rollback the db a few times using db:migrate VERSION=0 …
0
votes
1answer
21 views
warning: invalid receiver type +sqlite3
I am programming an Xcode iPhone app and utilizing sqlite. In an effort to delete all rows from a table, I receive the warning above when I build my code. Does anyone have any su …
0
votes
2answers
40 views
How to transfer data from MYsql server to iphone
Hi All,
I created a webservice in RDB with .Net.I able to transfer data from iphone to mysql and it returns the data.
But i need to transfer data from RDB to iphone whenever i nee …
