Main > Free Download Search >

Free sqlite 3.4.2 software for linux

sqlite 3.4.2

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 208
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
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
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
DBD::SQLite 1.12

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.
<<less
Download (0.53MB)
Added: 2006-06-12 License: Perl Artistic License Price:
1244 downloads
libASSA 3.4.2

libASSA 3.4.2


libASSA is an OO C++ UNIX networking library. more>>
libASSA is an OO C++ UNIX networking library based on some of the design patterns such as Configurator, Reactor, Acceptor, and Connector collectively known as Adaptive Communication Patterns described in various papers published by Dr. D. C. Schmidt.
libASSA library happily co-exists with other frameworks such as GUI toolkits and various CORBA implementations.
Enhancements:
- The networking layer has been ported to wing32 environment.
- There are minor bugfixes and interface improvements.
<<less
Download (0.55MB)
Added: 2006-08-14 License: GPL (GNU General Public License) Price:
1167 downloads
SQLiteDBMS 0.5.1

SQLiteDBMS 0.5.1


SQLiteDBMS is a database management server for SQLite. more>>
SQLiteDBMS is a database management server for SQLite. SQLiteDBMS project allows an sqlite3 process to be accessed via a TCP/IP network.
It provides Extended SQL, basic authentication, and access control. It includes a simple Web server that takes HTTP requests and sends XML responses.
To compile the project, first create a directory in which to place the build products. It is recommended, but not required, that the build directory be separate from the source directory. Cd into the build directory and then from the build directory run the configure script found at the root of the source tree. Then run "make".
For example:
tar xzf sqlitedbms-x.y.z.tar.gz ;# Unpack the source tree into "sqlitedbms"
cd sqlitedbms-x.y.z ;# Move into directory
./configure --with-sqlite3=DIR ;# Run the configure script
make ;# Run the makefile.
Enhancements:
- Some bugs were fixed.
- Stability was improved.
<<less
Download (0.44MB)
Added: 2006-11-15 License: BSD License Price:
1075 downloads
VSQLite++ 0.3

VSQLite++ 0.3


VSQLite++ is a portable SQLite wrapper library for C++. more>>
VSQLite++ is a portable SQLite wrapper library for C++.
Supported Compilers
- GCC and G++ 4.x (maybe 3.4.x too, but it wasnt tested until now)
- Visual C++ 8/2005 (Visual C++ 7.1/2003 wasnt tested, maybe will be added later)
<<less
Download (0.92MB)
Added: 2006-10-23 License: BSD License Price:
1096 downloads
WizSQLiteAdmin 0.5.2

WizSQLiteAdmin 0.5.2


WizSQLiteAdmin is a PHP script to manage SQLite databases. more>>
WizSQLiteAdmin is a PHP script to manage SQLite databases.

If you use SQLite databases you can manage their contents with WizSQLiteAdmin: its very simple to use and avoid you to perform a lot of action.

SQLite is a simply but powerful database embedded into PHP5. See here for more information about it!

This application got the 2nd prize at 2nd PHP Programming Marathon at dotgeek.org
<<less
Download (0.017MB)
Added: 2007-03-23 License: GPL (GNU General Public License) Price:
945 downloads
LiteMan 0.2

LiteMan 0.2


LiteMan is a simple GUI database manager for the SQLite embeded database engine version 3. more>>
LiteMan is a simple GUI database manager for the SQLite embeded database engine version 3. It is written in C++ using the Qt toolkit, and is free software under the terms of the GNU GPL license.
LiteMan is meant to be used a quick tool to build database files for dynamic websites and application file formats, but can be used as a generic database application (though a low-level one).
Main features:
- Create and view any SQLite3 database file
- Create, delete and alter new and existing tables
- Create and delete database views
- Run quaries by either direct SQL code or by a dialog
- Export your tables and views to a SQL dump file
Known Issues (and missing features)
- Table field comments are not stored.
- The only way to alter a table is to rename it. Anything other requires re-creating the table.
- There are no means to alter a view.
<<less
Download (0.034MB)
Added: 2006-05-29 License: GPL (GNU General Public License) Price:
1245 downloads
phpSQLiteAdm 0.1.0

phpSQLiteAdm 0.1.0


phpSQLiteAdm is an application to provide Web based management and administration for SQLite databases. more>>
phpSQLiteAdm is an application to provide Web based management and administration for SQLite databases.
phpSQLiteAdm project is meant to be similar to phpMyAdmin. It provides functionality to view data, to add and drop tables, views, and indexes, to export data, to add and delete rows, and to query the database.
Enhancements:
- This is the initial release.
- Code cleanup and bugfixes were done.
<<less
Download (0.066MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1039 downloads
SQLitepp

SQLitepp


SQLitepp is a multilanguage object oriented wrapper to the sqlite library. more>>
SQLitepp is a C/C++/Python wrapper to sqlite library for database management. It implements an object oriented way to manipulate the database in every supported language.

SQLitepp supports selfupdatable queries and a straight SQL code query system without using strange things for querying the database, letting you manipulate it directly in SQL but also exposing simple object oriented methods to manipulate the result of the queries and updating them.

Python EXAMPLE:

db = SQLDatabase("database.db")
q = db.query("Tablename", "SELECT Name,Id FROM %t")
if len(q):
tuple1 = q[0]
tuple1["Name"] = "Foobar"
tuple1.commit()
del db

C++ EXAMPLE:

SQLDatabase db("database.db");
SQLQuery *q = db.query("Tablename", "SELECT Name,Id FROM %t");
if(q->numberOfTuples()) {
SQLRow *tuple1 = q->getRow(0);
tuple1->set("Name", "Foobar");
tuple1->commit();
}
delete q;

C EXAMPLE:

void *db = new_SQLDatabase("database.db");
void *q = SQLDatabase_query(db, "Tablename", "SELECT Name,Id FROM %t");
if(SQLQuery_numberOfTuples(q)) {
void *tuple1 = SQLQuery_getRow(q, 0);
SQLRow_set(tuple1, "Name", "Foobar");
SQLRow_commit(tuple1);
}
delete_SQLQuery(q);
delete_SQLDatabase(db);
<<less
Download (0.019MB)
Added: 2005-09-26 License: LGPL (GNU Lesser General Public License) Price:
1489 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-sqlite3 0.5

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!)
<<less
Download (0.010MB)
Added: 2007-04-05 License: The PHP License Price:
948 downloads
QtSqlView 0.8.0

QtSqlView 0.8.0


QtSqlView is a simple and easy to use SQL database browser written in Qt 4.x using the excellent QtSql components. more>>
QtSqlView project is a simple and easy to use SQL database browser written in Qt 4.x using the excellent QtSql components. Using QtSql drivers it can natively connect to MySQL, PostgreSQL and SQLite databases. Furthermore other database systems may be accessed using their ODBC drivers. QtSqlView is released under the GNU General Public License: source and win32 binary may be downloaded below.
This short program was initially written for a set of windows users, who need to access and edit a PostgreSQL database. This is possible with M$ Access and ODBC, but the configuration of PostgreSQLs ODBC driver and the ODBC DSN is far too complicated for the average database editor. Thus problem-free access of open-source databases was top priority for QtSqlView.
QtSqlView does not aim to be a generic SQL database tool including table schema editor and dialog-based data entry. For this purpose you may consider using TOra or Kexi.
Main features:
- Problem-free connecting to MySQL, PostgreSQL and SQLite databases on Windows.
- Add, delete and modify a list of database connections.
- Browse, edit, save and revert SQL tables, system tables and views of registered connections
- Copy selected cells as tab-separated text to the clipboard.
- View table schema including primary key.
- Execute custom SQL queries on the database connect and view results.
- SQL syntax highlighting in query editor.
- Uses Qt4s greatly improved SQL components.
The source code package can be built on Linux, Windows, OS/X and probably other Qt platforms using the usual qmake && make commands.
The Windows binary version was built with Qt 4.2 and includes native drivers to access MySQL, PostgreSQL and SQLite databases. No other program package is needed. The versions of the included drivers are available and will be updated when needed.
<<less
Download (0.033MB)
Added: 2006-10-12 License: GPL (GNU General Public License) Price:
1108 downloads
KnowledgeTree 3.4.2

KnowledgeTree 3.4.2


KnowledgeTree is a feature-rich document management system featuring knowledge management. more>>
KnowledgeTree is a feature-rich document management system featuring knowledge management, document version control, hierarchical document management, support for common file formats (MS Word, MS Excel, PDF, TXT, HTML), extensible meta data, creation of custom document types, application managed document links that guarantees consistent data and eliminates emailing documents, easy publication of documents, subscription agents, archiving according to expiry date, expiry time period, or utilisation for enhanced speed, and much more.
KnowledgeTree is free software released under the GPL license.
Main features:
- Fully web-based
- Includes document version control
- Search within common file formats (MS Word, MS Excel, PDF, TXT, HTML)
- Entry and search of user-defined metadata fields
- Subscription agents provide notification of changes to documents or to document directories
- Archives by expiry date, expiry time period, or by document usage, ensures fast searching
- Document-specific discussion forums
- Configurable browsing of information in the repository by folder, by category, or by document type
- Customizable dashboard allows you to view subscriptions, pending documents, checked-out documents, and quick links
- Displays configurable metadata when browsing
- Supports bulk uploads of multiple files to a folder
- Translations available for most of the user interface
Enhancements:
- This is a bugfix release that mainly addresses some webservices and XSS issues as well as several smaller issues related to i18n and issues created by the XSS fixes.
<<less
Download (MB)
Added: 2007-08-08 License: MPL (Mozilla Public License) Price:
808 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5