Main > Free Download Search >

Free sqlite software for linux

sqlite

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 193
SQLite Manager 0.5.0 Beta 3

SQLite Manager 0.5.0 Beta 3


SQLite Manager is an all-in-one and very useful application which can manage all your sqlite databases using this lightweight extension for firefox, thunderbird, sunbird, seamonkey, songbird, komodo, flock etc. more>> <<less
Added: 2009-07-23 License: MPL Price: FREE
62 downloads
 
Other version of SQLite Manager
SQLite Manager 0.5.0 Beta 3SQLite Manager is an excellent and extremely useful program which offers an easy way to manage all your sqlite databases using this lightweight
Price: FREE
License:MPL
Download
62 downloads
Added: 2009-07-23
gozerplugs 0.9.0.17

gozerplugs 0.9.0.17


A plugin package for gozerbot more>>
gozerplugs 0.9.0.17 is professionally designed as a plugin package for gozerbot. gozerbot is the Python IRC bot and Jabber bot in one.

Major Features:

  1. Provide both IRC and Jabber support
  2. User management by userhost .. bot will not respond if it doesnt know you
  3. Fleet .. use more than one bot in a program
  4. Use the bot through dcc chat
  5. Fetch rss feeds
  6. Remember items
  7. Relaying between bots
  8. Program your own plugins
  9. Query other bots with json REST
  10. Serve as a udp irc or jabber notification bot
  11. Sqlalchemy support

Requirements:

  • a shell
  • python 2.5 or higher (sqlite.so builtin or use pysqlite3)
  • gnupg
  • simplejson
  • sqlalchemy
  • xmpppy
<<less
Added: 2009-06-19 License: BSD License Price: FREE
13 downloads
SQLite for Linux 3.5.4

SQLite for Linux 3.5.4


an ACID-compliant relational database management system more>> SQLite is a in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. The code for SQLite is in the public domain and is thus free for use for any purpose, commercial or private. SQLite is currently found in more applications than we can count, including several high-profile projects.
SQLite is an embedded SQL database engine. Unlike most other SQL databases, SQLite does not have a separate server process. SQLite reads and writes directly to ordinary disk files. A complete SQL database with multiple tables, indices, triggers, and views, is contained in a single disk file. The database file format is cross-platform - you can freely copy a database between 32-bit and 64-bit systems or between big-endian and little-endian architectures. These features make SQLite a popular choice as an Application File Format. Think of SQLite not as a replacement for Oracle but as a replacement for fopen()
SQLite is a compact library. With all features enabled, the library size can be less than 250KiB, depending on compiler optimization settings. (Some compiler optimizations such as agressive function inlining and loop unrolling can cause the object code to be much larger.) If optional features are omitted, the size of the SQLite library can be reduced below 180KiB. SQLite can also be made to run in minimal stack space (16KiB) and very little heap (100KiB), making SQLite a popular database engine choice on memory constrained gadgets such as cellphones, PDAs, and MP3 players. There is a tradeoff between memory usage and speed. SQLite generally runs faster the more memory you give it. Nevertheless, performance is usually quite good even in low-memory environments.
<<less
Download (178KB)
Added: 2009-04-14 License: Freeware Price: Free
195 downloads
PHP for liunx 5.2.6

PHP for liunx 5.2.6


A full suite of tools for building dynamic websites more>> new: Zend Engine II with a new object model.
Some of the key features of PHP 5 include:
The Zend Engine II with a new object model and dozens of new features.
XML support has been completely redone in PHP 5, all extensions are now focused around the excellent libxml2 library (http://www.xmlsoft.org/).
A new SimpleXML extension for easily accessing and manipulating XML as PHP objects. It can also interface with the DOM extension and vice-versa.
A brand new built-in SOAP extension for interoperability with Web Services.
A new MySQL extension named MySQLi for developers using MySQL 4.1 and later. This new extension includes an object-oriented interface in addition to a traditional interface; as well as support for many of MySQLs new features, such as prepared statements.
SQLite has been bundled with PHP. For more information on SQLite, please visit their website.
Streams have been greatly improved, including the ability to access low-level socket operations on streams.
And lots more...
<<less
Download (15.01MB)
Added: 2009-03-31 License: Freeware Price: Free
206 downloads
SQLite 3.4.2

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
<<less
Download (2.1MB)
Added: 2007-08-14 License: Public Domain Price:
551 downloads
XAMPP 1.6.3b

XAMPP 1.6.3b


XAMPP is a very easy to install Apache distribution for Linux, Solaris, and Windows. more>>
XAMPP project is a very easy to install Apache distribution for Linux, Solaris, and Windows.
Many people know from their own experience that its not easy to install an Apache web server and it gets harder if you want to add MySQL, PHP and Perl.
XAMPP is an easy to install Apache distribution containing MySQL, PHP and Perl. XAMPP is really very easy to install and to use - just download, extract and start.
Main features:
- Apache 2.2.4
- MySQL 5.0.45
- PHP 4.4.7
- PHP 5.2.3
- Perl 5.8.7
- ProFTPD 1.3.0a
- phpMyAdmin 2.10.3
- OpenSSL 0.9.8e
- GD 2.0.1
- Freetype 2.1.7
- libjpeg 6b
- libpng 1.2.12
- gdbm 1.8.0
- zlib 1.2.3
- expat 1.95.2
- Sablotron 1.0
- libxml 2.6.11
- libxslt 1.1.8
- Ming 0.3
- Webalizer 2.01
- pdf class 009e
- ncurses 5.8
- mod_perl 2.0.2
- FreeTDS 0.63
- gettext 0.11.5
- IMAP C-Client 2004e
- OpenLDAP (client) 2.3.11
- mhash library 0.8.18
- mcrypt library 2.5.7
- cURL 7.13.1
- SQLite 2.8.17 (for PHP4 + PHP5)
- SQLite 3.3.17 (for PHP5 PDO SQLite)
- phpSQLiteAdmin 0.2
- libapreq 2.07
- eAccelerator 0.9.5.1
- FPDF 1.53
Enhancements:
- Fixed problem with start script on 64-bit systems.
<<less
Download (MB)
Added: 2007-08-06 License: Freeware Price:
2784 downloads
Storage Inspector 0.5

Storage Inspector 0.5


Storage Inspector is a Firefox extension that makes it easy to view any sqlite database files in the current profile. more>>
Storage Inspector is a Firefox extension that makes it easy to view any sqlite database files in the current profile. This includes the anti-phishing and search engine...

Developer Comments:

There are quite a few polish issues that need to be addressed before this version is ready for the masses. If you notice problems, please view the readme.txt file first and tell me if there are other issues.

You can set the storageinspector.openmode pref to 2 if you want the extension to open in a new tab instead of its own window.

I have primarily tested the extension in Firefox 2b1 but would still like feedback on how it runs in 3a1.

If you dont like something, please post here with a constructive statement telling me what you would like.

<<less
Download (0.040MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
824 downloads
PySQLite 2.3.5

PySQLite 2.3.5


pysqlite is a Python DB-API 2.0 interface for the SQLite embedded relational database engine. more>>
pysqlite is a Python DB-API 2.0 interface for the SQLite embedded relational database engine.
Enhancements:
- pysqlite is now 2.5 times faster for DML statements.
- This pays off especially for bulk-loading data.
- pysqlite now recognizes if the database engine has done an implicit ROLLBACK and acts accordingly.
- Using custom mapping and sequence types in parameters works now.
<<less
Download (0.083MB)
Added: 2007-07-18 License: zlib/libpng License Price:
517 downloads
CGI::Wiki::Kwiki 0.59

CGI::Wiki::Kwiki 0.59


CGI::Wiki::Kwiki is an instant wiki built on CGI::Wiki. more>>
CGI::Wiki::Kwiki is an instant wiki built on CGI::Wiki.

A simple-to-use front-end to CGI::Wiki. It can be used for several purposes: to migrate from a CGI::Kwiki wiki (its original purpose), to provide a quickly set up wiki that can later be extended to use more of CGI::Wikis capabilities, and so on. It uses the Template Toolkit to allow quick and easy customisation of your wikis look without you needing to dive into the code.

INSTALLATION

The distribution ships with and installs a script called cgi-wiki-kwiki-install. Create an empty directory somewhere that your web server can see, and run the script. It will set up a SQLite database, install the default templates into the current directory, and create a cgi script to run the wiki. You now have a wiki - edit wiki.cgi to change any of the default options, and youre done.

MORE DETAILS

wiki.cgi will look something like this:

#!/usr/bin/perl -w
use strict;
use warnings;
use CGI;
use CGI::Wiki::Kwiki;

my %config = (
db_type => SQLite,
db_name => /home/wiki/data/node.db,
formatters => {
default => CGI::Wiki::Formatter::Default,
},
);

my %vars = CGI::Vars();
eval {
CGI::Wiki::Kwiki->new(%config)->run(%vars);
};

if ($@) {
print "Content-type: text/plainnn";
print "There was a problem with CGI::Wiki::Kwiki:nn--n";
print "$@";
print "n--n";
print STDERR $@;
}

In the following directions, we use "webserver" to mean the user that your webserver executes CGI scripts as. Often this is actually you yourself; sometimes it is "www-data" or "apache". If you dont know, ask your ISP.
In the script above and in the following, replace /home/wiki/data/node.db with a filename in a directory that you will be able to make readable and writeable by the webserver. SQLite requires access to both the file (for writing data) and the directory it resides in (for creating a lockfile).

<<less
Download (0.025MB)
Added: 2007-07-17 License: Perl Artistic License Price:
831 downloads
SQLiteJDBC 034

SQLiteJDBC 034


SQLiteJDBC supports the most commonly used features of JDBC that can be efficiently implemented on top of SQLite. more>>
SQLiteJDBC is a JDBC driver for SQLite which is written as a Java JNI layer over the SQLite 3.3.x API.

SQLiteJDBC supports the most commonly used features of JDBC that can be efficiently implemented on top of SQLite. Only a single native JNI library is required, and SQLite is compiled in.

Binaries are provided for Linux, Mac OS X, and Windows.

<<less
Download (0.13MB)
Added: 2007-06-19 License: BSD License Price:
521 downloads
Callweaver 1.2 RC4

Callweaver 1.2 RC4


Callweaver is a community driven software PBX project. more>>
Callweaver project is a community driven software PBX project. The most important differences between Callweaver and Asterisk are built-in STUN support, the use of SpanDSP for better codecs and full T.38 fax over IP support, Sqlite instead of Berkeley DB, universal jitterbuffer, POSIX timers to avoid Zaptel timing dependencies, greater speed, more efficient dialplan execution, and greater stability.
Enhancements:
- This is hopefully the last release candidate before the 1.2 release.
- There are many bugfixes and improvements.
<<less
Download (5.4MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
864 downloads
SQLite::VirtualTable 0.03

SQLite::VirtualTable 0.03


SQLite::VirtualTable is a Perl module that can create SQLite Virtual Table extensions in Perl. more>>
SQLite::VirtualTable is a Perl module that can create SQLite Virtual Table extensions in Perl.

SYNOPSIS

on Perl:
package MyVirtualTable;
use base SQLite::VirtualTable;

sub CREATE {
...
and then from your preferred SQLite application or language, as for instance, the sqlite3 shell:
$ sqlite3
sqlite> .load perlvtab.so
sqlite> CREATE VIRTUAL TABLE foo USING perl ("MyVirtualTable", foo, bar, ...);
sqlite> SELECT * FROM foo WHERE col1 AND col1 > 34;
...

Virtual tables are a new feature in SQLite (currently still only available from the development version on CVS) that allows you to create tables using custom backends to access (read and change) their contents instead of being stored in the database file.

The SQLite::VirtualTable module allows you to create these backends in Perl embbeding a perl interpreter as a SQLite extension.
Note that extensions written using this module can be used from any SQLite application and programming language (C, Java, PHP, Perl, etc.).

<<less
Download (0.040MB)
Added: 2007-06-12 License: Perl Artistic License Price:
865 downloads
SiPHiCo 2007-05-27

SiPHiCo 2007-05-27


Simple PHP Hit Counter is a simple hit counter written in PHP and using SQLite as a database. more>>
Simple PHP Hit Counter is a simple hit counter written in PHP and using SQLite as a database. SiPHiCo project can be included in a page like an image, and the hits will be counted as the graphic is created.

After that, the IP will be blocked for further counts (10 minutes by default). Administration (creation of counters, etc.) is done via a web frontend, which is password protected. Theres also a log, a small statistics page and a calendar that shows the hits per day.

<<less
Download (0.019MB)
Added: 2007-05-28 License: Freeware Price:
879 downloads
DBConsole 0.6.7

DBConsole 0.6.7


DBConsole is a GPLd database shell written in Python. more>>
DBConsole is a GPLd database shell written in Python. The project currently supports SQLite, PostgreSQL and MySQL.

DBConsole is dedicated to the nice people behind Python DBAPI-2.

<<less
Download (0.028MB)
Added: 2007-05-24 License: GPL (GNU General Public License) Price:
887 downloads
GENU CMS 2007.1

GENU CMS 2007.1


GENU is a Content Management System which uses a database server (MySQL, PostgreSQL, or SQLite). more>>
GENU is a Content Management System which uses a database server (MySQL, PostgreSQL, or SQLite). The project uses a template system and supports multiple languages.
It features BBCode and HTML tag support, a bulletin board, a comment system with reply and editing abilities, an administration interface, headlines generation, polls, a search engine, smilies support, "submit" and "send" news functions, unlimited news organized into unlimited categories, and user management.
Enhancements:
- new search system, also included in the posts
- new template named blumar
- HTML corrections
- more verifications when editing the categories
<<less
Download (0.17MB)
Added: 2007-05-01 License: GPL (GNU General Public License) Price:
908 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5