downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

SQLite3::open> <SQLite3::lastInsertRowID
[edit] Last updated: Wed, 19 Jun 2013

view this page in

SQLite3::loadExtension

(PHP 5 >= 5.3.0)

SQLite3::loadExtensionTente de charger une extension de la bibliothèque SQLite

Description

public bool SQLite3::loadExtension ( string $shared_library )

Tente de charger une extension de la bibliothèque SQLite.

Liste de paramètres

shared_library

Le nom de l'extension à charger. L'extension doit se trouver dans le dossier spécifié par l'option de configuration sqlite3.extension_dir.

Valeurs de retour

Retourne TRUE si l'extension a été chargée avec succès, FALSE si une erreur survient.

Exemples

Exemple #1 Exemple avec SQLite3::loadExtension()

<?php
$db 
= new SQLite3('mysqlitedb.db');
$db->loadExtension('libagg.so');
?>



add a note add a note User Contributed Notes SQLite3::loadExtension - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites