jdbc driver for sqlite 006
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1626

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:
- 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.
- 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.
- 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 ).
- 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 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
Mrinal Kant - manage all your sqlite databases using this lightweight extension for firefox, thunderbirdPrice: FREE
License:MPL
License:MPL

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
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 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
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.
<<lessThere 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.
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 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.
<<lessUsing 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.
Download (0.066MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
831 downloads
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).
<<lessMain 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).
Download (1.5MB)
Added: 2007-07-17 License: LGPL (GNU Lesser General Public License) Price:
833 downloads
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.
<<lessWe 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.
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 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.
<<lessBug 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.
Download (MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
834 downloads
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
<<lessJust 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
Download (9.8MB)
Added: 2007-07-10 License: Free To Use But Restricted Price: $79
853 downloads
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 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.
<<lessInstallation:
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.
Download (14.6MB)
Added: 2007-06-22 License: Other/Proprietary License Price:
868 downloads
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.
<<lessEnhancements:
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.
Download (10.9MB)
Added: 2007-06-22 License: Other/Proprietary License Price:
878 downloads
Other version of nVidia FreeBSD Display Driver x86
License:Other/Proprietary License
iReport Designer for JasperReports 2.0.0
iReport is a visual reporting tool based on JasperReports and written in pure Java. more>>
iReport project is a powerful, intuitive and easy to use visual report builder/designer for JasperReports written in 100% pure java.
This tool allows users to visually edit complex reports with charts, images, subreports,.... iReport is integrated with JFreeChart, one of the most diffused OpenSource chart library for java.
The data to print can be retrieved through several ways including multiple JDBC connections, TableModels, JavaBeans, XML, etc...
Enhancements:
- Full support for JasperReports 1.3.4.
- A new XML field mapping tool.
- A new document structure outline.
- Improved refactoring capabilities.
- An improved report query dialog.
- An improved UI with sortable tables.
- Several bugfixes.
<<lessThis tool allows users to visually edit complex reports with charts, images, subreports,.... iReport is integrated with JFreeChart, one of the most diffused OpenSource chart library for java.
The data to print can be retrieved through several ways including multiple JDBC connections, TableModels, JavaBeans, XML, etc...
Enhancements:
- Full support for JasperReports 1.3.4.
- A new XML field mapping tool.
- A new document structure outline.
- Improved refactoring capabilities.
- An improved report query dialog.
- An improved UI with sortable tables.
- Several bugfixes.
Download (33.2MB)
Added: 2007-06-21 License: GPL (GNU General Public License) Price:
669 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 jdbc driver for sqlite 006 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