Main > Free Download Search >

Free jdbc driver sqlite 006 software for linux

jdbc driver sqlite 006

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1043
Cego 2.3.10

Cego 2.3.10


Cego implements a relational and transactional database system with support for the SQL query language. more>>

Cego 2.3.10 won't make you disappointed cause it can be invoked in creation mode, batch mode ( single threaded ) or daemon mode ( multi threaded ) to serve client requests.

Major Features:

  1. cgclt is the database client program for accessing the database as a database user. The client program can be invoked in batch mode to process a sql script or interactive mode to use it as an interactive shell.In both modes, several database information queries and any kind of query SQL queries are sent to the server daemon and the corresponding result is received.
  2. To enable applications to access Cego, four API's are provided by the framework. The Cego JDBC driver can be used as the standard database access for any Java applications. For Perl applications, a DBD interface is provided which must be used in combination with the DBI driver. As third ( and more sophisticated ), Cego provides a C++ and a plain C library which can be used for plain and direct access.
  3. cgadm is a database administration program for accessing the database as a database administrator. Tablesets can be defined and created or dropped and removed. Furthermore, any registered tableset in the database can be started and stopped, recovered, expanded and so on. cgadm provides management of distributed tablesets among several nodes ( tableset switch, copy and relocation features ).
  4. Another administration frontend for GUI users is the CegoAdm program. In fact, it implements the same functionality as the cgadm console program but offers a intuitive user interface. A dedicated user documentation is available soon.

Enhancements: Further optimization on join logic ( treating appropriate predicates in where-condition before joining inner and outer tables

<<less
Added: 2009-07-26 License: GPL Price: FREE
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
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
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
SmallSQL 0.19

SmallSQL 0.19


SmallSQL is the ultimate Java Desktop SQL Database Engine with JDBC 3.0 API. more>>
SmallSQL is the ultimate Java Desktop SQL Database Engine with JDBC 3.0 API.
There are 2 solutions to start with SmallSQL DBMS
1.) From an existing Database
You can convert an existing Database with JDbConverter. This is an open source tool to convert a database from one DBMS to another DBMS via JDBC. You can download it and convert your existing JDBC database.
2.) Create a database with a GUI tool
We does not have such tool but we recommended one of the follow:
JDBC Navigator. This is a free graphical Java tool. After you have download it
Select the menu "Open JDBC Data Source"
Name: Small SQL Database
Driver Class: smallsql.database.SSDriver
URL: jdbc:smallsql
Save and Connect
Open the menu "Connection | SQL Window"
Enter "CREATE DATABASE db1" and execute it with ENTER
Close the Connection
Select the menu "Open JDBC Data Source" and change the URL to
jdbc:smallsql:db1
Save and Connect
SQuirreL SQL Client. This is an open source graphical Java tool. After you have download and install it
Create a new JDBC Driver
Name: Small SQL Database
Example URL: jdbc:smallsql:
Create a new Alias
Name: Small SQL db1
JDBC Driver: Small SQL
URL: jdbc:smallsql
Auto Logon: Yes
Connect to the alias "Small SQL db1"
Change to the tab "SQL"
Enter "CREATE DATABASE db1" and execute it
Close the window
Change the alias
JDBC URL: jdbc:smallsql:db1
Connect to the alias "Small SQL db1"
Configuration:
JDBC Driver class name: smallsql.database.SSDriver
JDBC URL: jdbc:smallsql:< database >
< database > is a absolute or relative directory name
In the Java code for a directory "db1" this look like:
Class.forName( "smallsql.database.SSDriver" );
java.sql.Connection con = java.sql.DriverManager.getConnection( "jdbc:smallsql:db1" );
Enhancements:
- JOIN performance was greatly improved with a new algorithm.
- German and Italian translations of the error messages were added, and it is easy to add more translations.
- Some bugs were fixed.
<<less
Download (0.21MB)
Added: 2007-08-02 License: LGPL (GNU Lesser General Public License) Price:
815 downloads
ATA over Ethernet driver 49

ATA over Ethernet driver 49


ATA over Ethernet driver allows the Linux kernel to use the ATA over Ethernet (AoE) network protocol. more>>
ATA over Ethernet driver allows the Linux kernel to use the ATA over Ethernet (AoE) network protocol.
Using AoE, a Linux system can use AoE block devices like EtherDrive (R) storage blades.
The block devices appear as local device nodes (e.g. /dev/etherd/e0.0).
Enhancements:
- The driver now handles payloads larger than 4KiB, receives large packets without extra in-memory copy, and handles I/O requests so that the user can choose between the Linux I/O schedulers.
<<less
Download (0.066MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
831 downloads
HA-JDBC 2.0

HA-JDBC 2.0


HA-JDBC is a JDBC driver implementation that provides light-weight. more>>
HA-JDBC project is a JDBC driver implementation that provides light-weight, transparent clustering capabilities to groups of homogeneous JDBC- accessed databases.
Main features:
- Supports any database accessible via JDBC.
- High-availability - Database cluster can lose a node without failing the current transaction.
- Improves performance of concurrent read-access by distributing load across individual nodes.
- Support for full JDBC 3.0 (Java 1.4) feature set.
- Compatible with JDBC RowSet implementations found in Java 1.5.
- Out-of-the-box database-independent strategies for synchronizing a failed cluster node.
- Exposes JMX management interface to allow administration of database clusters.
- Open source (LGPL).
<<less
Download (1.5MB)
Added: 2007-07-17 License: LGPL (GNU Lesser General Public License) Price:
833 downloads
Limb3 2007.3

Limb3 2007.3


Limb is an OpenSource PHP framework aimed for rapid web application development. more>>
Limb is an OpenSource PHP framework aimed for rapid web application development.
We are committed proponents of beautiful and easy-to-maintain code that simply works. That is why we develop and constantly refactor Limb code in a test driven manner using the best agile development practices.
The latest version of framework is Limb3 which consists of many reusable components distributed as packages on Limb3 PEAR channel.
The previous version Limb2 is a PHP4 compatible framework for building web sites with rich and easy-to-update content. In acknowledgement of the original approach in 2004 Limb2 got the 3d place in Zend Contest. However nowadays Limb2 development is almost frozen since the core dev. team is mostly focused on Limb3. Someday Limb2 will be a simply package of the more general Limb3 framework.
Main features:
- PHP-5.2 compatibility
- lmbActiveRecord better inheritance and value objects support
- DATASOURCE package cruft cleanup and unification
- merge of DATASOURCE and CLASSKIT packages into CORE package
- new FS package(merging FILE_SCHEMA and UTIL packages)
- new LOG package(extracted from ERROR package)
- TREE package code overhaul and new features(nested sets driver is available again)
- more friendly error subsystem
- form errors better implementation
- TESTS_RUNNER improved CLI and phpSpikesCoverage support
- LIMB_VAR_DIR dependency removal from base classes
- reimplementation of CALENDAR package using better JavaScript alternative
- DATETIME package cleanup and misc improvements
- initial TinyMC support in WYSIWYG package
- FCKEditor updated to 2.4.2
- WACT better expressions support
- SQLite DB driver
- DBAL package refactoring and cleanup, lmbDBAL is a central facade for accessing mis. tools in a package
- JS package cleanup, moving to jQuery instead of Prototype
- more isolated packages tests
Enhancements:
- PHP 5.2 compatibility was added.
- Better inheritance and value objects support was implemented for lmbActiveRecord.
- A new FS package was added, which merges the FILE_SCHEMA and UTIL packages.
- A new LOG package was extracted from the ERROR package.
- The TREE package code was overhauled and new features were added.
- The error subsystem was made more friendly.
- The CLI and phpSpikesCoverage support of TESTS_RUNNER were improved.
- The CALENDAR package was reimplemented using a better JavaScript alternative.
- Initial TinyMC support was added in the WYSIWYG package.
- FCKEditor was updated to 2.4.2.
- An SQLite DB driver was added.
<<less
Download (2.1MB)
Added: 2007-07-16 License: LGPL (GNU Lesser General Public License) Price:
831 downloads
Apache LDAP vhost driver 1.1

Apache LDAP vhost driver 1.1


Apache LDAP vhost driver lets you put vhost with all possible information in an LDAP database for both Apache 1.x and 2.x. more>>
Apache LDAP vhost driver project lets you put vhost with all possible information in an LDAP database for both Apache 1.x and 2.x.

Bug report system

With the new maintainence, there is now also a bug report system at the URL http://bugs.bayour.com/ (project mod_ldap_cfg).

Schemas

A schema called mod_ldap_cfg is used.

Apache config

To setup Apache to use this module, the httpd.conf is used.
<<less
Download (MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
834 downloads
DbVisualizer 6.0

DbVisualizer 6.0


DbVisualizer is a powerful tool for navigating JDBC-enabled databases. more>>
DbVisualizer project is a cross-platform database tool for all major relational databases. DbVisualizer enables simultaneous connections to many different databases through JDBC drivers.
Just point and click to browse the database structure, view detailed characteristics of database objects, edit table data graphically, execute arbitrary SQL statements or SQL scripts, reverse engineer primary/foreign key mappings graphically or why not let DbVisualizer chart your database with its advanced charting options.
The user friendly graphical interface in combination with the unique collection of features makes DbVisualizer the ideal choice for database administrators and developers.
Main features:
General
- The Database Objects Tree is now always visible in the main window
- The Monitor main tab has been moved to a separate window (launch it via Tools->Monitor)
- Now with support for Java 1.5
- Support for Oracle XMLType data type
- Now displays User Defined Types (UDT)
- Support for MySQL 5+
Connection
- Variables can now be used in the Connection details
- New tool properties, Require Userid and Require Password
SQL Commander
- Auto Completion support used to ease the editing of SQL statements by automatically displaying list of table and column names
- The new Execute Current operation is used to execute the statement at the cursor position
Grid Enhancements
- Quick Filter is used to easily limit the number of rows in a grid by showing only those matching a search word
- Calulate Selection is used to perform simple calculations on the selected cells. Useful primarly for integer data
- Column visibility feature enabling persistent save of column changes such as horizontal location and visible state
<<less
Download (9.8MB)
Added: 2007-07-10 License: Free To Use But Restricted Price: $79
853 downloads
cegojdbc 1.1.0

cegojdbc 1.1.0


cegojdbc implements the JDBC driver for the Cego database system. more>>
cegojdbc implements the JDBC driver for the Cego database system.

<<less
Download (0.18MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
852 downloads
nVidia FreeBSD Display Driver x86 100.14.11

nVidia FreeBSD Display Driver x86 100.14.11


nVidia FreeBSD Display Driver is the OpenGL nVidia support for graphic cards on FreeBSD operating systems. more>>
nVidia FreeBSD Display Driver is the OpenGL nVidia support for graphic cards on FreeBSD operating systems.
Enhancements:
Added support for new GPUs:
- GeForce 7050 PV / NVIDIA nForce 630a
- GeForce 7025 / NVIDIA nForce 630a
Fixed console restore problems in several different configurations:
- Quadro FX 4400 SLI
- VESA console
- Notebook LCD displays
- Improved interaction with ATi RS480/482 based mainboards.
- Improved support for House Sync with G-Sync II.
- Improved NVIDIA X driver interaction with ACPI daemon.
<<less
Download (10.9MB)
Added: 2007-06-22 License: Other/Proprietary License Price:
878 downloads
 
Other version of nVidia FreeBSD Display Driver x86
nVidia FreeBSD Display Driver x86 1.0-9742 BetaNVIDIA Corporation - nVidia FreeBSD Display Driver x86 1.0-9742 ... nVidia FreeBSD Display
License:Other/Proprietary License
Download (10.6MB)
1070 downloads
Added: 2006-11-21
nVidia Linux Display Driver IA32 100.14.11

nVidia Linux Display Driver IA32 100.14.11


nVidia Linux Display Driver is the OpenGL nVidia support for graphic cards on Linux operating systems. more>>
nVidia Linux Display Driver is the OpenGL nVidia support for graphic cards on Linux operating systems.
Installation:
Type "sh NVIDIA-Linux-x86-100.14.09-pkg1.run" to install the driver. NVIDIA now provides a utility to assist you with configuration of your X config file.
Enhancements:
Added support for new GPUs:
- GeForce 7050 PV / NVIDIA nForce 630a
- GeForce 7025 / NVIDIA nForce 630a
Fixed console restore problems in several different configurations:
- Quadro FX 4400 SLI
- VESA console
- Notebook LCD displays
- Improved interaction with ATi RS480/482 based mainboards.
- Improved support for House Sync with G-Sync II.
- Improved NVIDIA X driver interaction with ACPI daemon.
<<less
Download (14.6MB)
Added: 2007-06-22 License: Other/Proprietary License Price:
868 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
Xmldoom::doc::UsingTorque 0.0.16

Xmldoom::doc::UsingTorque 0.0.16


Xmldoom::doc::UsingTorque Perl module contains a how to about making Torque generator to work with your database.xml. more>>
Xmldoom::doc::UsingTorque Perl module contains a how to about making Torque generator to work with your database.xml.

Because the format used in the database definition (commonly named database.xml) is the same as Apache Torque, we can use their tools to automatically generate database.xml from the database, or automatically create the database from a database.xml.

Basically, the Torque Generator is a set of Ant scripts that call into the Torque engine. So, you need to install Ant as well.

SETTING UP THE TORQUE GENERATOR

First, you must download the Torque Generator from their project page:

http://db.apache.org/torque/download.html

Make sure you are downloading the Generator (the page is a little confusing). Youll see that there is a table there with versions going down the Y-axis and product names going across the X-axis. If the page hasnt since this writing, you want the top-cell over to the right one.

Once youve got it:

1. Extract the archive somewhere. Youll end up with directory named like torque-gen-3.2. Go there.
2. Edit a file named build.properties. Most of the setting dont matter for us, so you can skip down to the section labeled "DATABASE SETTINGS" (with a space between each letter). Configuring this section should be pretty self explanitory if you have ever used JDBC in Java before. In case you havent you can check out the explanation at the end of this document named "BUILD PROPERTIES".
3. You need to find and copy the JDBC drivers for your database into the lib/ directory. More on this in the "BUILD PROPERTIES" section.

Now you are ready to give it a go.

ANT TARGETS

To generate an XML schema from your database, run:

ant -f build-torque.xml jdbc

Most likely you wont want to use the generated file directly, because it lacks foreign-keys and any of the groovy Xmldoom special features. But it does provide a quick spring-board to allow to copy-paste and modify to get started quickly.

To create your database based on the XML description, run:

# to initially create the databas
ant -f build-torque.xml create-db

# will drop and re-create all tables in the database
ant -f build-torque.xml insert-sql

<<less
Download (0.10MB)
Added: 2007-06-15 License: Perl Artistic License Price:
861 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5