Main > Free Download Search >

Free sqlite gui software for linux

sqlite gui

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1686
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
Alien GUI 0.4

Alien GUI 0.4


Alien GUI is a graphical user interface of famous Alien which makes it possible to transform packages. more>>
Alien GUI is a graphical user interface of famous Alien which makes it possible to transform packages.

You must be logged in root to be able to use it.

<<less
Download (0.10MB)
Added: 2006-03-05 License: GPL (GNU General Public License) Price:
1378 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
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
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
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
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
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
gTune (GUI) 0.10

gTune (GUI) 0.10


This is a nice instrument tuner for GNOME 1.0. more>>
This is a nice instrument tuner for GNOME 1.0. There is a compact very simple interface. There is also a console version and a GNOME 0.30 version avaialble.

It was derived from the original gtune utility which was a console program. It uses FFT routines which are quite slow and I dont think it should be run on anything below a pentium class computer and I reccomend a P166. This new version (0.10) now works for the more recent releases of GNOME, and is simpler than the original. It also now compiles two targets, gtune and gtune_console, so you can use console mode gtune if you want to.

You can download gTune for Gnome 1.0 source here, or you can download a staticly linked version of gTune 0.10 here. All you need to do is uncompress it into a dummy directory and execute the command "./runme". I hope the next releases will use the autoconf stuff, but this program is very simple anyways.

This new version isnt perfect however, it now determines intervals on its own, but Ive only been able to test how it does it on my machine. It works perfectly on mine, and should on your, but be careful the first time you run it and mail me if you have any trouble with it. I dont want to scare you off, I dont anticipate anything going wrong (did I just jynx it?).
<<less
Download (1.2MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1195 downloads
Systemtap GUI 8.08.06

Systemtap GUI 8.08.06


Systemtap GUI is a GUI to assist in the development of Systemtap scripts and to graph the return values of those scripts. more>>
Systemtap GUI is a GUI to assist in the development of Systemtap scripts and to graph the return values of those scripts.

SystemTap GUI is an application intended to ease in the use of the SystemTap tool for Linux. Systemtap GUI is both an Integrated Development Environment for the SystemTap scripting language, as well as a data visualization and analysis tool.

The GUI is targetted at System Administrators who want to get information out of their system using SystemTap, as well as Developers who wish to write new SystemTap scripts. It is an Eclipse-based application.

SystemTap GUI is still under rapid development, and incomplete at this point, but we are always looking for feedback on the application.

The SystemTap GUI is licensed under the terms of the Eclipse Public License. Systemtap is required for the use of this application: http://sourceware.org/systemtap/

<<less
Download (20MB)
Added: 2006-09-08 License: Eclipse Public License Price:
1143 downloads
SQL Uniform 1.8.1

SQL Uniform 1.8.1


SQL Uniform is a database client with a graphical user interface (GUI). more>>
SQL Uniform is a database client with a graphical user interface (GUI). The project is a helper application to relational databases of various types regarding query, maintenance, data comparison, export (convert), and import.
It supports any kind of database and database servers to which there is an ODBC or JDBC standard driver. It has been tested on the following databases: Access, Adabas D, DaffodilDB, dBASE, Excel, HSQL, IBM DB2, Interbase (Firebird), JDataStore, Linter (Relex), McKOI, Mimer, MSSQL, MySQL, Openlink Virtuoso, Oracle, Paradox, Pervasive (Btrive), Pointbase, PostgreSQL, Quadcap QED, Solid, SQLITE, Sybase, ThinkSQL, and Yard.
Enhancements:
- The data browse, SQL query, table design, administration, export, and SQL import windows are also parts of freeware mode.
<<less
Download (4.8MB)
Added: 2007-01-24 License: Freeware Price:
1019 downloads
CloverETL GUI 1.6

CloverETL GUI 1.6


CloverGUI is a Graphical User Interface for CloverETL engine. more>>
CloverGUI is a Graphical User Interface for CloverETL engine.

CloverETL is an Extract Transform Load tool designed for Data collection, Data transformation, Data integration, etc. CloverETL engine is free, licensed under LGPL.

The CloverGUI allows its users-developers to create and modify data transformations in graphical format.

Such visual design essentially simplifies and streamlines the entire development process.

The developer selects from a pallete of existing components and pastes them onto a worksheet. Then he interconnects them into graphical representation of a transformation graph. The graphical representation is then translated by CloverGUI into XML self-documenting code, which is subsequently executed by CloverETL engine. The XML code is platform-independent.

The CloverGUI has been developed as an Eclipse framework plugin and is well integrated with other Eclipse functionality.

The CloverGUI belongs to a range of tools significantly simplifying operations with data using the CLoverETL engine base. Beside CloverGUI modul a Data Cleanser or Data Profiler modules are also available.

The CloverGUI is free for non-commercial use.

<<less
Download (MB)
Added: 2007-02-26 License: Free for non-commercial use Price:
978 downloads
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 3Mrinal Kant - and extremely useful program which offers an easy way to manage all your sqlite databases using
Price: FREE
License:MPL
Download
62 downloads
Added: 2009-07-23
HDBC Sqlite3 Driver 1.0.1.0

HDBC Sqlite3 Driver 1.0.1.0


HDBC Sqlite3 Driver is the Haskell Sqlite v3 backend driver for HDBC. more>>
HDBC Sqlite3 Driver is the Haskell Sqlite v3 backend driver for HDBC.

Please see HDBC itself for documentation on use. If you dont already
have it, you can browse this documentation at
http://darcs.complete.org/hdbc/doc/index.html.

This package provides one function in module Database.HDBC.Sqlite3:

{- | Connect to an Sqlite version 3 database. The only parameter needed is
the filename of the database to connect to.

All database accessor functions are provided in the main HDBC module. -}
connectSqlite3 :: FilePath -> IO Connection

<<less
Download (0.023MB)
Added: 2007-03-09 License: LGPL (GNU Lesser General Public License) Price:
961 downloads
F-Prot GUI 0.5

F-Prot GUI 0.5


F-Prot GUI is a graphical user interface for great (and free for individual users) command line antivirus called F-Prot. more>>
F-Prot GUI is a graphical user interface for great (and free for individual users) command line antivirus called F-Prot.
F-Prot GUI is a very simple script but not featureless, I hope it will be useful.
For home users using the Linux open-source operating system, we offer F-Prot Antivirus for Linux Workstations. F-Prot Antivirus for Linux Workstations utilizes the renowned F-Prot Antivirus scanning engine for primary scan but has in addition to that a system of internal heuristics devised to search for unknown viruses
F-Prot Antivirus for Linux was especially developed to effectively eradicate viruses threatening workstations running Linux. It provides full protection against macro viruses and other forms of malicious software - including Trojans.
Main features:
- Scans for over 314168 known viruses and their variants
- Ability to perform scheduled scans when used with the cron utility
- Scans hard drives, CD-ROMS, diskettes, network drives, directories and specific files
- Scans for images of boot sector viruses, macro viruses and Trojan Horses
<<less
Download (0.009MB)
Added: 2006-08-14 License: GPL (GNU General Public License) Price:
1174 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5