php sqlite
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1807
php-sqlite3 0.5
php-sqlite3 is a PHP extension that lets you access SQLite3 databases within your scripts. more>>
php-sqlite3 project is a PHP extension that lets you access SQLite3 databases within your scripts.
PHP 4 and PHP 5 have already built-in support for this RDBM, but this is limited to the 2.x releases. This extension adds support for SQLite 3.x release.
Please note that this project is still alpha-quality. Please test and report if it works for you and how it can be enhanced.
Current (or planned) features include:
In-memory databases support
UTF-16 encoding
User-level SQL functions
PEAR::DB driver class
Enhancements:
- fix BEGIN...END/ROLLBACK statments queries (thanks to John Morrissey!)
- better support for BLOB columns (thanks to Michal Srajer!)
<<lessPHP 4 and PHP 5 have already built-in support for this RDBM, but this is limited to the 2.x releases. This extension adds support for SQLite 3.x release.
Please note that this project is still alpha-quality. Please test and report if it works for you and how it can be enhanced.
Current (or planned) features include:
In-memory databases support
UTF-16 encoding
User-level SQL functions
PEAR::DB driver class
Enhancements:
- fix BEGIN...END/ROLLBACK statments queries (thanks to John Morrissey!)
- better support for BLOB columns (thanks to Michal Srajer!)
Download (0.010MB)
Added: 2007-04-05 License: The PHP License Price:
948 downloads
PHP TopSites 2.1
PHP TopSites provides a PHP/MySQL-based customizable TopList script. more>>
PHP TopSites provides a PHP/MySQL-based customizable TopList script.
PHP TopSites is a PHP/MySQL-based customizable TopList script. Main features include: Easy configuration config file; MySQL database backend; unlimited categories, Site rating on incoming votes; Special Rating from Webmaster; anti-cheating gateway; Random link; Lost password function; Webmaster Site-approval; Edit site; ProcessingTime display; Cookies Anti-Cheating; Site Reviews; Linux Cron Free; Frame Protection and much more.
Main features:
- Unlimited Number of Sites.
- Unlimited Number of Categories.
- Unlimited Number of Reviews for Each Site.
- Administrator Control Panel.
- Rating for Each Site.
- Stars Rating for Each Site.
<<lessPHP TopSites is a PHP/MySQL-based customizable TopList script. Main features include: Easy configuration config file; MySQL database backend; unlimited categories, Site rating on incoming votes; Special Rating from Webmaster; anti-cheating gateway; Random link; Lost password function; Webmaster Site-approval; Edit site; ProcessingTime display; Cookies Anti-Cheating; Site Reviews; Linux Cron Free; Frame Protection and much more.
Main features:
- Unlimited Number of Sites.
- Unlimited Number of Categories.
- Unlimited Number of Reviews for Each Site.
- Administrator Control Panel.
- Rating for Each Site.
- Stars Rating for Each Site.
Download (0.072MB)
Added: 2007-04-26 License: Freeware Price:
912 downloads
SQLite 3.4.2
SQLite is an embeddable SQL engine in a C library. more>>
SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine.
Main features:
- Transactions are atomic, consistent, isolated, and durable (ACID) even after system crashes and power failures.
- Zero-configuration - no setup or administration needed.
- Implements most of SQL92. (Features not supported)
- A complete database is stored in a single disk file.
- Database files can be freely shared between machines with different byte orders.
- Supports databases up to 2 terabytes (241 bytes) in size.
- Sizes of strings and BLOBs limited only by available memory.
- Small code footprint: less than 30K lines of C code, less than 250KB code space (gcc on 486)
- Faster than popular client/server database engines for most common operations.
- Simple, easy to use API.
- TCL bindings included. Bindings for many other languages available separately.
- Well-commented source code with over 95% test coverage.
- Self-contained: no external dependencies.
- Sources are in the public domain. Use for any purpose.
The SQLite distribution comes with a standalone command-line access program (sqlite) that can be used to administer an SQLite database and which serves as an example of how to use the SQLite library.
Create A New Database:
- At a shell or DOS prompt, enter: "sqlite3 test.db". This will create a new database named "test.db". (You can use a different name if you like.)
- Enter SQL commands at the prompt to create and populate the new database.
Write Programs That Use SQLite
Below is a simple TCL program that demonstrates how to use the TCL interface to SQLite. The program executes the SQL statements given as the second argument on the database defined by the first argument. The commands to watch for are the sqlite3 command on line 7 which opens an SQLite database and creates a new TCL command named "db" to access that database, the invocation of the db command on line 8 to execute SQL commands against the database, and the closing of the database connection on the last line of the script.
#!/usr/bin/tclsh
if {$argc!=2} {
puts stderr "Usage: %s DATABASE SQL-STATEMENT"
exit 1
}
load /usr/lib/tclsqlite3.so Sqlite3
sqlite3 db [lindex $argv 0]
db eval [lindex $argv 1] x {
foreach v $x(*) {
puts "$v = $x($v)"
}
puts ""
}
db close
<<lessMain features:
- Transactions are atomic, consistent, isolated, and durable (ACID) even after system crashes and power failures.
- Zero-configuration - no setup or administration needed.
- Implements most of SQL92. (Features not supported)
- A complete database is stored in a single disk file.
- Database files can be freely shared between machines with different byte orders.
- Supports databases up to 2 terabytes (241 bytes) in size.
- Sizes of strings and BLOBs limited only by available memory.
- Small code footprint: less than 30K lines of C code, less than 250KB code space (gcc on 486)
- Faster than popular client/server database engines for most common operations.
- Simple, easy to use API.
- TCL bindings included. Bindings for many other languages available separately.
- Well-commented source code with over 95% test coverage.
- Self-contained: no external dependencies.
- Sources are in the public domain. Use for any purpose.
The SQLite distribution comes with a standalone command-line access program (sqlite) that can be used to administer an SQLite database and which serves as an example of how to use the SQLite library.
Create A New Database:
- At a shell or DOS prompt, enter: "sqlite3 test.db". This will create a new database named "test.db". (You can use a different name if you like.)
- Enter SQL commands at the prompt to create and populate the new database.
Write Programs That Use SQLite
Below is a simple TCL program that demonstrates how to use the TCL interface to SQLite. The program executes the SQL statements given as the second argument on the database defined by the first argument. The commands to watch for are the sqlite3 command on line 7 which opens an SQLite database and creates a new TCL command named "db" to access that database, the invocation of the db command on line 8 to execute SQL commands against the database, and the closing of the database connection on the last line of the script.
#!/usr/bin/tclsh
if {$argc!=2} {
puts stderr "Usage: %s DATABASE SQL-STATEMENT"
exit 1
}
load /usr/lib/tclsqlite3.so Sqlite3
sqlite3 db [lindex $argv 0]
db eval [lindex $argv 1] x {
foreach v $x(*) {
puts "$v = $x($v)"
}
puts ""
}
db close
Download (2.1MB)
Added: 2007-08-14 License: Public Domain Price:
551 downloads
PHP Screw 1.3
PHP Screw is a PHP script encryption tool. more>>
PHP Screw is a PHP script encryption tool. When you are developing a commercial package using PHP, the script can be distributed as encrypted up until just before execution, preserving your intellectual property.
<<less Download (0.008MB)
Added: 2005-09-19 License: BSD License Price:
1497 downloads
PHP-Qt 0.1
PHP-Qt is an extension for PHP 5.1 that makes it possible to write software with the Qt toolkit. more>>
PHP-Qt library is an extension for PHP 5.1 that makes it possible to write software with the Qt toolkit.
It provides an object-oriented interface to the Qt 4 framework.
<<lessIt provides an object-oriented interface to the Qt 4 framework.
Download (0.19MB)
Added: 2007-07-14 License: LGPL (GNU Lesser General Public License) Price:
837 downloads
PHP StatIt 4 060626
PHP StatIt keeps track of visitor counts and other visitor information. more>>
PHP StatIt keeps track of visitor counts and other visitor information such as system, browser, referral domains, screen resolution, color, etc.
PHP StatIt script features a Web-based statistics page and statistics available in three languages. Installation and configuration are simple.
<<lessPHP StatIt script features a Web-based statistics page and statistics available in three languages. Installation and configuration are simple.
Download (0.16MB)
Added: 2006-06-28 License: GPL (GNU General Public License) Price:
1218 downloads
PHP Voice 2.1.0
PHP Voice (formerly known as PHP VXML) contain four classes that assist in developing voice application using PHP. more>>
PHP Voice (formerly known as PHP VXML) contain four classes that assist in developing voice application using PHP.
PHP Voice supports Speech Synthesis Markup Language 1.0, Speech Recognition Grammar Specification 1.0, Voice Browser Call Control: CCXML 1.0, and Voice Extensible Markup Language (VoiceXML) 2.0.
Enhancements:
- An improved menu module to support arrays as parameters with the ID of the menu.
- An improved home application with the new menu module.
<<lessPHP Voice supports Speech Synthesis Markup Language 1.0, Speech Recognition Grammar Specification 1.0, Voice Browser Call Control: CCXML 1.0, and Voice Extensible Markup Language (VoiceXML) 2.0.
Enhancements:
- An improved menu module to support arrays as parameters with the ID of the menu.
- An improved home application with the new menu module.
Download (0.43MB)
Added: 2005-11-15 License: GPL (GNU General Public License) Price:
1456 downloads
PHP 5.0.1 Linux
The PHP Package !!! - Linux Version more>>
PHP began as a quick Perl hack written by Rasmus Lerdorf in 1994.
Over the next two to three years, it evolved into what we today know as PHP/FI 2.0. PHP/FI started to get a lot of users, but things didn`t start flying until Zeev Suraski and Andi Gutmans suddenly came along with a new parser in the summer of 1997, leading to PHP 3.0. PHP 3.0 defined the syntax and semantics used in both versions 3 and 4.
<<lessOver the next two to three years, it evolved into what we today know as PHP/FI 2.0. PHP/FI started to get a lot of users, but things didn`t start flying until Zeev Suraski and Andi Gutmans suddenly came along with a new parser in the summer of 1997, leading to PHP 3.0. PHP 3.0 defined the syntax and semantics used in both versions 3 and 4.
Download (4.98MB)
Added: 2009-04-29 License: Freeware Price:
202 downloads
PHP Ticket 0.71
PHP Ticket is a PHP and MySQL based ticketing system. more>>
phpticket is a ticketing system written in PHP, backed up by a MySQL database. Its purpose is to provide helpdesks/staffs with an easy "to do" application for keeping track of what needs to be done.
The interface is kept fairly simple and easy to use. The code is licensed under GPL.
<<lessThe interface is kept fairly simple and easy to use. The code is licensed under GPL.
Download (0.036MB)
Added: 2005-05-05 License: GPL (GNU General Public License) Price:
1646 downloads
Php Logo Interpreter 0.1
Php Logo Interpreter project is a logo language interpreter. more>>
Php Logo Interpreter project is a logo language interpreter.
This package implements an interpreter of the Logo programming language.
It implements almost all features of the Logo programming language, including procedure definition, recursion call, etc..
The output of the execution of logo programs is rendered on an image resource that can be outputted in any supported by the PHP GD extension.
<<lessThis package implements an interpreter of the Logo programming language.
It implements almost all features of the Logo programming language, including procedure definition, recursion call, etc..
The output of the execution of logo programs is rendered on an image resource that can be outputted in any supported by the PHP GD extension.
Download (MB)
Added: 2007-05-29 License: GPL (GNU General Public License) Price:
881 downloads
DBD::SQLite 1.12
DBD::SQLite is a Self Contained RDBMS in a DBI Driver. more>>
DBD::SQLite is a Self Contained RDBMS in a DBI Driver.
SYNOPSIS
use DBI;
my $dbh = DBI->connect("dbi:SQLite:dbname=dbfile","","");
SQLite is a public domain RDBMS database engine that you can find at http://www.hwaci.com/sw/sqlite/.
Rather than ask you to install SQLite first, because SQLite is public domain, DBD::SQLite includes the entire thing in the distribution. So in order to get a fast transaction capable RDBMS working for your perl project you simply have to install this module, and nothing else.
SQLite supports the following features:
- Implements a large subset of SQL92
See http://www.hwaci.com/sw/sqlite/lang.html for details.
- A complete DB in a single disk file
Everything for your database is stored in a single disk file, making it easier to move things around than with DBD::CSV.
- Atomic commit and rollback
Yes, DBD::SQLite is small and light, but it supports full transactions!
- Extensible
User-defined aggregate or regular functions can be registered with the SQL parser.
Theres lots more to it, so please refer to the docs on the SQLite web page, listed above, for SQL details. Also refer to DBI for details on how to use DBI itself.
<<lessSYNOPSIS
use DBI;
my $dbh = DBI->connect("dbi:SQLite:dbname=dbfile","","");
SQLite is a public domain RDBMS database engine that you can find at http://www.hwaci.com/sw/sqlite/.
Rather than ask you to install SQLite first, because SQLite is public domain, DBD::SQLite includes the entire thing in the distribution. So in order to get a fast transaction capable RDBMS working for your perl project you simply have to install this module, and nothing else.
SQLite supports the following features:
- Implements a large subset of SQL92
See http://www.hwaci.com/sw/sqlite/lang.html for details.
- A complete DB in a single disk file
Everything for your database is stored in a single disk file, making it easier to move things around than with DBD::CSV.
- Atomic commit and rollback
Yes, DBD::SQLite is small and light, but it supports full transactions!
- Extensible
User-defined aggregate or regular functions can be registered with the SQL parser.
Theres lots more to it, so please refer to the docs on the SQLite web page, listed above, for SQL details. Also refer to DBI for details on how to use DBI itself.
Download (0.53MB)
Added: 2006-06-12 License: Perl Artistic License Price:
1244 downloads
PHP IDN 1.2b
PHP IDN is the PHP(4) API for the GNU LibIDN software made by Simon Josefsson. more>>
PHP IDN is the PHP(4) API for the GNU LibIDN software made by Simon Josefsson. Its intention is to have international characters in the DNS system. See more about the library at Josefsson LibIDN page.
To checkout the code, execute the following two lines after each other. As of version 0.7 (which will be released later today Jan 12, 2004), PHP-IDN can be made externaly from the PHP sources. Just check it out (or unpack the distribution tarball, see below) in a directory of your choice.
cvs -d :pserver:anonymous@cvs.bayour.com:/var/cvs login
cvs -d :pserver:anonymous@cvs.bayour.com:/var/cvs co idn
<<lessTo checkout the code, execute the following two lines after each other. As of version 0.7 (which will be released later today Jan 12, 2004), PHP-IDN can be made externaly from the PHP sources. Just check it out (or unpack the distribution tarball, see below) in a directory of your choice.
cvs -d :pserver:anonymous@cvs.bayour.com:/var/cvs login
cvs -d :pserver:anonymous@cvs.bayour.com:/var/cvs co idn
Download (0.011MB)
Added: 2006-12-05 License: GPL (GNU General Public License) Price:
1055 downloads
PHP PrintIPP 0.73
PrintIPP is a PHP class (PHP5) which implements an IPP client (Internet Printing Protocol). more>>
PrintIPP is a PHP class (PHP5) which implements an IPP client (Internet Printing Protocol).
PrintIPP, in its current state, is able to print both strings and files, and cancel jobs, as doing all RFC2911 operations.
PHP PrintIPP project is a Free Software.
PHP PrintIPP is distributed uder LGPL, Http backend under BSD license, testfiles under GPL, test script and examples in documentation under BSD license, documentation under GNU FDL (with no invariant section, no front-cover and no back-cover).
Enhancements:
- There is now an integrated HTTP backend, with Basic and Digest authentication mechanisms.
- Many operations have been added.
<<lessPrintIPP, in its current state, is able to print both strings and files, and cancel jobs, as doing all RFC2911 operations.
PHP PrintIPP project is a Free Software.
PHP PrintIPP is distributed uder LGPL, Http backend under BSD license, testfiles under GPL, test script and examples in documentation under BSD license, documentation under GNU FDL (with no invariant section, no front-cover and no back-cover).
Enhancements:
- There is now an integrated HTTP backend, with Basic and Digest authentication mechanisms.
- Many operations have been added.
Download (0.083MB)
Added: 2006-01-19 License: GPL (GNU General Public License) Price:
1373 downloads
PHP FastFileCache 0.1b
PHP FastFileCache caches output from dynamic PHP scripts, and stores them in files for fast retrieval under high server load. more>>
PHP FastFileCache caches output from dynamic PHP scripts, and stores them in files for fast retrieval under high server load.
<<less Download (0.002MB)
Added: 2005-09-21 License: Freeware Price:
1493 downloads
PHP GEN 1.6.1
PHP GEN reads the list of tables in a database. more>>
PHP GEN reads the tables list in a database, lets you select one, then reads the structure of it and suggests you a basic (modifiable) configuration, and than generates good-style and easy mantainable PHP code capable of listing, adding, editing and delet
Both the generated code and the engine itself use Pear::DB for database-abstraction layer and Smarty for the presentation/interface layer.
Enhancements:
- This version includes a script to perform some basic tests on your PHP GEN installation.
- Other noticeable changes include support for BBCode on textarea-field and tuning of pagination links.
<<lessBoth the generated code and the engine itself use Pear::DB for database-abstraction layer and Smarty for the presentation/interface layer.
Enhancements:
- This version includes a script to perform some basic tests on your PHP GEN installation.
- Other noticeable changes include support for BBCode on textarea-field and tuning of pagination links.
Download (0.097MB)
Added: 2006-07-08 License: GPL (GNU General Public License) Price:
1204 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above php sqlite search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed