Cego数据库的JDBC驱动 cegojdbc cegojdbc 是 Cego 数据库系统的 JDBC 驱动程序,要求 Java 1.5 运行环境。...
couchdb 驱动 jcouchdb jcouchdb 是一个 Java 5 的 couchdb 文档数据库的 JDBC 驱动程序,基于 svenson JSON 库。...
ruby-odbc 在Ruby下使用ODBC的扩展类库。...
Qore MySQL Module Qore MySQL的模块是一个为Qore编程语言连接和操作MySQL数据库的DBI驱动模块。 MySQL的驱动程序透明地处理客户端和服务器字符编码,并支持多线程,交易管理,存储过程的执行,等等。...
Eiffel mySQL Eiffel 语言的 MySQL 数据库接口。...
eCouch eCouch 是一个用ErLang 语言编写的应用程序,用于访问 CouchDB 服务器。
主要的特性包括:
eCouch is an application that provides an API to a CouchDb server
It uses the rfc4627 module from LShift
eCouch design was inspired by the article Building a Non-blocking TCP server using OTP principles
It assumes that inets application is running
......
D语言通用数据库接口 D DBI D DBI 是 D 语言用来连接各种 SQL 兼容数据库的通用接口,目前支持的数据库包括:
MS SQL Server & Sybase
MySQL
ODBC
PostgreSQL
SQLite 3
另外已经开始在开发的数据库包括:
InterBase
mSQL
Oracle
示例代码:
import dbi.sqlite.SqliteDatabase;import dbi.Row;import tango.io.Stdout;void main() { SqliteDatabase db = new SqliteDatabase(); db.connect("test.db"); Row[] rows = db.queryFetchA......
DBIWrapper The DBIWrapper is a Perl Module which provides easier access to databases using DBI. It currently supports MySQL, PostgreSQL, Sybase and ODBC DBD drivers. High level methods for reading, writing, commiting and rolling back transactions are provided. The DBI data structures can still be used to return the data in.......
Microsoft SQL Server JDBC Driver 这是微软官方发布的 SQL SERVER 数据库的 JDBC 驱动程序。可以从任何 Java 应用程序、应用程序服务器或支持 Java 的小程序访问 SQL Server 2000、SQL Server 2005 和 SQL Server 2008。这是一个 Type 4 JDBC 驱动程序,它通过 Java Platform, Enterprise Edition 5 中可用的标准 JDBC 应用程序编程接口 (API) 提供数据库连接。
此版本的 JDBC 驱动程序与 JDBC 4.0 兼容,并在 Java 开发工具包 (JDK) 5.0 版或更高版本上运行。它......
Firebird数据库的Python驱动 KInterbasDB KInterbasDB是一个Python的扩展包用来实现兼容Python 2.0的数据库接口,支持 Firebird 和 Borland Interbase 数据库。除了极少的功能集的Python数据库API的标准, KInterbasDB也使几乎所有本地客户端API的数据库引擎。...
PostgreSQL的Python接口 psycopg psycopg is a PostgreSQL database adapter for the Python programming language. Its main advantages are that it supports the full Python DBAPI 2.0 and it is thread safe at level 2. It was designed for heavily multi-threaded applications that create and destroy lots of cursors and make a conspicuous number of concurrent INSERTs or UPDATEs. The psycopg distribution includes ZPsycopgDA, a Zope Datab......
MySQL Ruby MySQL Ruby 是封装了 libmysqlclient 的MySQL接口库...
OpenDBX The OpenDBX libraries provide a unified and consistent API for software developers to different database management systems. The C and C++ libraries aim to implement access to the native database interfaces efficiently via a thin abstraction layer. They consist of a basic set of functions that are part of all vendor database libraries and can be extended by additional function blocks.
支持的数据......
SAP DB JDBC Driver MaxDB官方的JDBC驱动程序
驱动类名:com.sap.dbtech.jdbc.DriverSapDB连接URL:jdbc:sapdb://<host>/<database_name>...
Ingres JDBC Driver CA公司的Ingres数据库官方的JDBC驱动程序
驱动类名:com.ingres.jdbc.IngresDriver连接URL:jdbc:ingres://host:port/db;attr=value...
mysqltcl mysqltcl 是 TCL 语言连接并操作 MySQL 数据库的接口。
示例代码:
::mysql::sel $db { select lname, fname, area, phone from friends order by lname, fname}::mysql::map $db {ln fn - phone} { if {$phone == {}} continue puts [format "%16s %-8s %s" $ln $fn $phone]}......
Jackess Jackess 是一个用来读写 MS Access 数据库文件的纯 Java 库
读写示例如下:
System.out.println(Database.open(new File("my.mdb")).getTable("MyTable").display());
Database db = Database.create(new File("new.mdb"));Table newTable = new TableBuilder("NewTable") .addColumn(new ColumnBuilder("a") .setSQLType(Types.INTEGER) .toColumn()) .addColumn(new ColumnBuilder("b") ......
SQLite-Ruby SQLite-Ruby是Ruby脚本语言的SQLite数据库模块,提供了操作SQLite数据库的相关接口。依赖:SQLiteRubyGemsRuby安装方式: ruby install.rb...