As of PHP 5.4 support for Sqlite2 has been removed. I have a large web app that was built with sqlite2 as the database backend and thus it exploded when I updated PHP. If you're in a similar situation I've written a few wrapper functions that will allow your app to work whilst you convert the code to sqlite3.
Firstly convert your DB to an sqlite3 db.
sqlite OLD.DB .dump | sqlite3 NEW.DB
Then add the following functions to your app:
<?php
function sqlite_open($location,$mode)
{
$handle = new SQLite3($location);
return $handle;
}
function sqlite_query($dbhandle,$query)
{
$array['dbhandle'] = $dbhandle;
$array['query'] = $query;
$result = $dbhandle->query($query);
return $result;
}
function sqlite_fetch_array(&$result,$type)
{
#Get Columns
$i = 0;
while ($result->columnName($i))
{
$columns[ ] = $result->columnName($i);
$i++;
}
$resx = $result->fetchArray(SQLITE3_ASSOC);
return $resx;
}
?>
They're not perfect by any stretch but they seem to be working ok as a temporary measure while I convert the site.
Hope that helps someone
SQLite3
- Giriş
- Yapılandırma/Kurulum
- Öntanımlı Sabitler
- SQLite3 — SQLite3 sınıfı
- SQLite3::busyTimeout — Sets the busy connection handler
- SQLite3::changes — Veritabanında son SQL deyimi ile işlem gören satır sayısını döndürür
- SQLite3::close — Veritabanı bağlantısını kapatır
- SQLite3::__construct — Yeni bir SQLite3 nesnesini ilklendirdikten sonra bir SQLite veritabanını açar
- SQLite3::createAggregate — Toparlayıcı bir SQL işlevi olarak kullanılmak üzere bir PHP işlevini kayda geçirir
- SQLite3::createFunction — Sayıl bir SQL işlevi olarak kullanılmak üzere bir PHP işlevini kayda geçirir
- SQLite3::escapeString — Gerektiği gibi öncelenmiş bir dizge döndürür
- SQLite3::exec — Sonuç döndürmeyen bir SQL sorgusu çalıştırır
- SQLite3::lastErrorCode — Başarısız olan son SQLite isteğinin sayısal sonuç kodunu döndürür
- SQLite3::lastErrorMsg — Başarısız olan son SQLite isteği ile ilgili İngilizce iletiyi döndürür
- SQLite3::lastInsertRowID — Veritabanına en son yerleştirilen satırın kimliğini döndürür
- SQLite3::loadExtension — Belirtilen SQLite eklenti kütüphanesini yüklemeye çalışır
- SQLite3::open — Bir SQLite veritabanını açar
- SQLite3::prepare — Çalıştırılmak üzere bir SQL sorgusu hazırlar
- SQLite3::query — Bir SQL sorgusu çalıştırır
- SQLite3::querySingle — Bir sorgu çalıştırıp tek bir sonuç döndürür
- SQLite3::version — SQLite3 kütüphanesinin sürüm numarasını dizge ve sayı olarak döndürür
- SQLite3Stmt — SQLite3Stmt sınıfı
- SQLite3Stmt::bindParam — Bir değiştirgeyi bir deyim değişkeni ile ilişkilendirir
- SQLite3Stmt::bindValue — Bir değiştirgenin değerini bir deyim değişkeni ile ilişkilendirir
- SQLite3Stmt::clear — Tüm değiştirge ilişkilendirmelerini temizler
- SQLite3Stmt::close — Hazır deyimi kapatır
- SQLite3Stmt::execute — Hazır deyimi çalıştırır ve sonuç kümesini bir nesne olarak döndürür
- SQLite3Stmt::paramCount — Hazır deyimdeki değişken sayısını döndürür
- SQLite3Stmt::reset — Hazır deyimi sıfırlar
- SQLite3Result — SQLite3Result sınıfı
- SQLite3Result::columnName — Numarası belirtilen sütunun ismini döndürür
- SQLite3Result::columnType — Numarası belirtilen sütunun türünü döndürür
- SQLite3Result::fetchArray — Sonuç satırını bir dizi olarak döndürür
- SQLite3Result::finalize — Sonuç kümesini kapatır
- SQLite3Result::numColumns — Sonuç kümesindeki sütun sayısını döndürür
- SQLite3Result::reset — Sonuç kümesindeki geçerli satırı ilk satır yapar
Anonymous ¶
1 year ago
Anonymous ¶
2 years ago
If you get the following error for non-encrypted databases:
Warning: SQLite3::query() [sqlite3.query]: Unable to prepare statement: 26, file is encrypted or is not a database in …
... use PDO instead of this library.
alan at chandlerfamily dot org dot uk ¶
2 years ago
PHP 5.3.3 introduced sqlite3::busyTimeout(int milliseconds) which does not currently seem to be documented.
It believe it acts like sqlite::busyTimeout - that is it tells sqlite3 to call an internal busyHandler if SQLITE_BUSY is returned from any call which waits a short period and then retries. It continues to do this until milliseconds milliseconds have elapsed and then returns the SQLITE_BUSY status.
I don't know whether the default 60 second value is in place if this function is not called.
