Tagged Questions
0
votes
3answers
34 views
PHP JSON array from SQLite3
I'm trying convert data from a SQLite3 db to a JSON array by using PHP. I'm getting close, but I can't seem to get it right.
This is the error I'm getting:
PHP Warning: PDOStatement::fetchAll() ...
0
votes
0answers
8 views
Detect php SQLite3 “not an error” exceptions
I'm using the SQLite3 libraries for unit testing a DB migration management tool.
I seem to have discovered a flakey scenario though. The SQLite3::query() function is throwing an exception in the ...
-2
votes
1answer
54 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 ...
0
votes
1answer
21 views
Getting latests messages depending on time query
I have a table which has fields
i AM Saving messages for each type of user. so idValue is different for all the users.
idValue message time_added type
I am using following query to get ...
0
votes
0answers
30 views
PHP SQLite website working with external content on one server but not others
Currently I have a website that works fine under a Mint 14 (Ubuntu) Virtual Machine but fails to correctly run on other machines such as Windows using XAMPP or another Ubuntu Server.
When on failing ...
0
votes
1answer
30 views
SQLite Filesize is still not change after drop table [duplicate]
I have a SQLite Database 4MB.
I used command drop table name; and I dropped it. I checked in SQlite Manager that no more table name.
However, I checked the filesize, it is still 4MB, the same.
I use ...
-1
votes
1answer
24 views
Is it possible to connect a sqlite3 database remotly [closed]
Is it possible to connect a sqlite3 database from one server to another. Just like what we are using mysql_connect function ?. If so how can I connect. please help
0
votes
0answers
27 views
undefined reference to `php_checkuid' compiling php 5.4 with sqlcipher
I am trying to compile php 5.4 with sqlcipher extension as described in http://sqlcipher.net/sqlcipher-for-php/ and getting this error when I run make after ./configure --with-openssl
...
0
votes
0answers
24 views
PHP SQLite3 no data received
I am trying to connect a sqlite3 database in php. Here's my code:
<?php
$db = new SQLite3("/var/www/testdb.sq3");
?>
now when I open it in browser, output is "No data Received" error on ...
0
votes
1answer
58 views
PDOException: Could not find driver (works in browser, not command line)
This question has been asked several times, but I couldn't find anything that covers my situation: php/pdo/sqlite works from the command line but not from the browser.
My Ubuntu installation:
...
0
votes
0answers
37 views
SQLite / PHP - Read-only error despite having fixed permissions
I'm trying to write to a SQLite database from a PHP file, but am having read/write issues. The exact error message is:
SQLSTATE[HY000]: General error: 8 attempt to write a readonly database
Based ...
0
votes
0answers
24 views
buffering calls to ajax and sql
My situation is a PHP script that has HTML select tags. When the onchange from the select happens it can fire off up to 15 javascript functions, each slightly different. Each function has an AJAX ...
1
vote
2answers
58 views
PHP script creates corrupt SQLite database
I have this PHP script to create a database on a MAC Snow Leopard. When I try to open the .sqlite created I get an error message both from SQLite Database Browser 2.0 b1 ("An error occurred: File is ...
0
votes
2answers
86 views
Prepared statements vs. escaping strings in PHP SQLite3 [duplicate]
I'm working with SQLite3 in PHP.
A friend told me that I should prefer prepared statements, and I read this in many posts here on StackOverflow too. I want to understand the benefits of using ...
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 ...
0
votes
1answer
126 views
Insert form data into sqlite3 query without php in TideSDK
I have been searching for hours and it is probably just me being a novice but I am having a very hard time figuring out how to dynamically enter text into a sqlite3 query as they do not accept ...
1
vote
0answers
55 views
How to read from CDB (SQLite 3) database using PHP?
I want to read the data from .CDB files which seems to be a SQLite 3 database files. I want to read data and handle it using PHP. Can you please suggest me a solution for that?
I tried ADOdb for PHP ...
0
votes
2answers
78 views
Why won't this loop variable increment?
I'm trying to write code that will count the number of users returned by a sqlite query and then split a 'bill' between those users, but for some reason my counter won't increment and I am getting a ...
0
votes
2answers
63 views
SQLite doesn't save a primary key [closed]
The following code doesn't save a "eventid" in the sqlite db by default. I can see all the rows with echo but the event ID is emply... Any ideas why? Thanks a lot.
$now = time();
try{
if ...
1
vote
1answer
50 views
Parse from html and process massive amount of data to sqlite using php
I have an android app for local transportation times such as public bus, ferry and underground which will need to work both online and offline.
When app needs to be working offline, I need to keep ...
0
votes
2answers
82 views
SQLite3 and last_insert_rowid
This is how I create my handle
$this->_handle = new SQLite3($this->_dbname);
This is how I make my db query (shortened):
$stmt = $this->_handle->prepare($sql);
// execute query
$result ...
1
vote
1answer
31 views
Creates new database when there is no file instead of raising error
Im using SQLite and PDO in PHP for the first time.
I wrote simple connect procedure:
try
{
$link = new PDO("sqlite:".$file);
$link->setAttribute(PDO::ATTR_ERRMODE, ...
3
votes
1answer
67 views
Is there a PHP equivalent to sqlite3_limit?
I was trying to set SQLITE_MAX_COMPOUND_SELECT to something higher than 500 (the current limit) I saw this - http://www.sqlite.org/c3ref/limit.html to set runtime limits and later realised that it ...
0
votes
1answer
299 views
How to use SQLite3 in a portable fashion with PHP(5.4.x)
I am attracted by the grand claims of SQLite, too. However, just that like many other software, I have run into obsolete and not so easy to follow documentation and blogs by kind developers. Without ...
1
vote
0answers
185 views
PHP SQLite PDO very slow when using “GROUP BY” clause
I Have this project here playing with Philly crime data. I'm building this query to select incidents by type and police district. It takes 21 seconds in PHP and Zend, but under 3 seconds on the ...
-2
votes
2answers
122 views
how to get rows from sqlite db? [closed]
i am using this PHP code for getting rows but it's getting error
$db = new PDO('sqlite:db/logs');
$result = $db->exec("SELECT * FROM users");
while($row = $result->fetch(SQLITE_ASSOC))
{
}
...
-2
votes
1answer
138 views
PHP/SQL - Won't Insert New User into Table [closed]
My problem is that my script won't insert the new user info into my Database table. I have no clue why, I've been looking at this for nearly 3 hours on end, trying to find the problem, but I can't ...
1
vote
2answers
497 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
1answer
525 views
call to undefined function sqlite_libversion()
I really can't se why i get this error, i have
extension=php_sqlite.dll
extension=php_sqlite3.dll
I am working with wamp with php version 5.4.3
I get the folowing error
Call to undefined function ...
1
vote
1answer
51 views
Can I set PHP to use with utf 8 for Sqlite 3
I'm trying to get and dump an Sqlite field using PHP. Because of some characters I can't get specific values. Here's my code:
$sql = "SELECT * FROM siir WHERE siirAdi_txt LIKE 'Ağustos Şiiri%' ...
-1
votes
1answer
51 views
Dump Sqlite 3 field to a text file using PHP
I've a db (siir_05.db) and some 2 tables in it (sair, siir). I want to save a field in siir table to a text file. I wonder if it is possible.
0
votes
1answer
150 views
SQLite. What is better: check if table exists and then create it (or not) or “CREATE TABLE IF NOT EXISTS”?
I have implemented simple cache stored in SQLite database. For one client there is one table in database. I want to automaticaly create this table if it not exists. What will be better sollution, ...
2
votes
1answer
401 views
Codeigniter & SQLite - save session to database not working (ci_session)
I've just set up CI to work with sqlite via PDO and everything went smoothly. (I can query the sqlite db and all is fine.)
Now I have a problem, I set:
$config['sess_use_database'] = TRUE;
and ...
1
vote
3answers
93 views
Fastest way to test a server for sqlite via a PHP file?
I'm not sure if my server has sqlite on it, so I want to use a PDO object to test and see if the server supports sqlite. I tried:
<?php
echo `sqlite3 -v`;
got the following error: Warning: ...
1
vote
1answer
232 views
PHP + SQLite3 on Amazon AMI (EC2)
I have a similar question to this one, I want sqlite3 php support on my EC2 (standard Amazon AMI), but PHP was compiled with --without-sqlite3.
How can I add sqlite3 support? Its software from ...
1
vote
1answer
50 views
php sqlite3: are the database files closed automatically?
Simple question that i couldn't find in the SQLite3::close() of the PHP manual: does PHP close sqlite databases when the script ends or do we need to call $db->close() ourselves all the time?
0
votes
1answer
383 views
Implementing SQL AES ENCRYPTION into SQLite using PHP
is it possible to implement SQL AES_ENCRYPT/AES_DECRYPT into SQLite using PHP ?
For example I have a PHP Code:
$SQL = "INSERT INTO parent (Request, Column1, Column2) VALUES ...
1
vote
2answers
122 views
not able to update sqlite3 database from PHP page
I have installed PAW server in my android board. In PAW server I have added plug-in PHP. from there I am able to open my all php pages.
BUT the problem is I am not able to do INSERT and UPDATE query ...
0
votes
0answers
85 views
Sqlite3 does not work consecutive using php PDO
Sqlite3 does not work consecutive using php PDO
I am using php 5.3.6-13Ubuntu3.8 on Ubuntu 11.10.I have used php PDO. It is works fine for display data only but it does not allowed to perform any ...
0
votes
1answer
68 views
SQLite extended insert
This works.
INSERT INTO matrix (id, ref) VALUES (1, 47557);
These do not.
INSERT INTO matrix (id, ref) VALUES (1, 47557), (2, 47558), (17, 47573), (18, 47574), (19, 47575);
INSERT INTO matrix (id, ...
0
votes
1answer
57 views
how to confirm to the data inserted in sqlite database or not in php
i am new in php. i am trying to inset the data in sqlite database and my code is
$query= $dbh->prepare("INSERT INTO favorite_apps(version, apppkgname, appname, appdescriptive, appClass, ...
-1
votes
2answers
692 views
How to configure sqlite2 & 3 in php 5.3.6 on ubuntu 11.10 [closed]
How can I configure sqlite2 and sqlite3, both in PHP 5.3.6 on Ubuntu 11.10?
I work on two PHP projects: one uses sqlite2, and another uses sqlite3. I am working on Ubuntu 11.10. My problem is that my ...
0
votes
2answers
194 views
Sqlite3: display error Database is locked
My sqlite3 database display this error:
Array (
[0] => HY000
[1] => 5
[2] => "database is locked"
)
I have used php PDO for connect sqllite3 database.I have successfully read from ...
0
votes
1answer
70 views
Delete tree-structured data recursively
Hy there,
i have some tree-structured data in my sqlite-table and want to delete it recursively with php. The data looks like this:
Id ParentId
0 -1
1 0
The function:
/**
* Delete a ...
0
votes
1answer
106 views
Yii gii russian text not visible
I'm a newbie in Yii. I've created sqlite DB, include it in Yii config. Later via gii, I've created access to this DB. I can see my DB table with it's rows, but russian characters are not visible. The ...
1
vote
1answer
527 views
How to get first row of data in sqlite3 using php PDO
How to get first row of data in sqlite3 using php PDO
As per my below code first row data does not display becuase I have used recordset for check row is return or not.
Any idea how to get all data ...
1
vote
2answers
297 views
How to use multiple time PHP PDO return object?
How to use multiple time PHP PDO return object?
As per my below code $result object does not display any data in while loop.
My code
try {
$dbhandle = new PDO("sqlite:".$database);
} catch ...
1
vote
2answers
307 views
How to commit SQLite3 updates on PHP?
I'm trying to use SQLite3 in PHP, and everithing was fine until I needed to perform an UPDATE.
I supose I miss a COMMIT, but I don't find the way on how to do it.
My code is:
$respostes = ...
0
votes
1answer
46 views
SQLite3::createFunction vs internal php function
what is advantages of using SQLite3::createFunction() over simple php function?
0
votes
1answer
212 views
Best way to determine if a database has been changed?
I'm working on architecting a sqlite database for a gallery application. I would like to know if using a time stamp to check if the db has been updated is good practice, or if there is a better way to ...