Commit graph

932 commits

Author SHA1 Message Date
Jun Kuriyama
40631fcf9c DBIx::TransactionManager is a simple transaction manager. Like
DBIx::Class::Storage::TxnScopeGuard.

WWW: http://search.cpan.org/dist/DBIx-TransactionManager/
2010-12-25 11:12:16 +00:00
Wen Heping
3881dbdc82 Dancer::Plugin::Database provides an easy way to obtain a connected DBI database
handle by simply calling the database keyword within your Dancer application.

Returns a Dancer::Plugin::Database::Handle object, which is a subclass of DBI's
DBI::db connection handle object, so it does everything you'd expect to do with
DBI, but also adds a few convenience methods. See the documentation for
Dancer::Plugin::Database::Handle for full details of those.

WWW: http://search.cpan.org/dist/Dancer-Plugin-Database
2010-12-23 02:01:46 +00:00
Jose Alonso Cardenas Marquez
c602fa083c - Connect databases/firebird21-client and databases/firebird21-server 2010-12-20 09:07:31 +00:00
Jose Alonso Cardenas Marquez
a171fc3185 - Connect databases/firebird25-client and databases/firebird25-server 2010-12-20 08:51:20 +00:00
Josh Paetzel
a518214c4e HTSQL ("Hyper Text Structured Query Language") is a high-level query
language for relational databases. The target audience for HTSQL is the
accidental programmer -- one who is not a SQL expert, yet needs a usable,
comprehensive query tool for data access and reporting.

WWW: http://htsql.org/
2010-12-17 16:10:43 +00:00
Li-Wen Hsu
b55d84795a Add pecl-handlersocket 0.0.6, a PECL extension for HandlerSocket.
PR:		ports/153217
Submitted by:	jnlin at csie.nctu.edu.tw
2010-12-16 18:24:45 +00:00
Li-Wen Hsu
c60a4d71f1 Add libhsclient 1.0.6, client Library of HandlerSocket Plugin.
PR:		ports/153216
Submitted by:	Jui-Nan Lin <jnlin at csie.nctu.edu.tw>
2010-12-16 18:23:34 +00:00
Philip M. Gollucci
8789a9f61c Ruby/OCI8 is a ruby interface for Oracle using OCI8 API.
PR:		ports/111501
Submitted by:	Simun Mikecin <numisemis at yahoo dot com>
2010-12-12 04:10:34 +00:00
Greg Lewis
d3a9136804 . Add a port of MyBatis for Java:
MyBatis is a first class persistence framework with support for custom
SQL, stored procedures and advanced mappings.  MyBatis eliminates almost
all of the JDBC code and manual setting of parameters and retrieval of
results.  MyBatis can use simple XML or Annotations for configuration and
map primitives, Map interfaces and Java POJOs (Plain Old Java Objects)
to database records.

WWW: http://www.mybatis.org/
2010-12-07 06:13:59 +00:00
Wen Heping
745c29b0a2 DBIx::NoSQL is a layer over DBI that presents a NoSQLish way to store and
retrieve data. It does this by using a table called __Store__. Once connected
to a database, it will detect if this table is missing and create it if
necessary.

When writing data to the store, the data (a HASH reference) is first
serialized using JSON and then inserted/updated via DBIx::Class to (currently)
an SQLite backend.

Retrieving data from the store is done by key lookup or by searching an
SQL-based index. Once found, the data is deserialized via JSON and returned.

WWW: http://search.cpan.org/dist/DBIx-NoSQL/
2010-12-07 01:47:56 +00:00
Wen Heping
9be44a431b A MySQL client library written in Go. The aim of this project is to
provide a library with a high level of usability, good interal error
handling and to emulate similar libraries available for other languages
to provide an easy migration of MySQL based systems into the Go language.

WWW: https://github.com/Philio/GoMySQL
2010-12-06 04:08:24 +00:00
Jun Kuriyama
5c21ebbb10 AnyEvent interface to DBD::Pg's async interface.
WWW: http://search.cpan.org/dist/AnyEvent-DBD-Pg/
2010-12-02 05:54:54 +00:00
Jun Kuriyama
512b27c7ac DBIx::DBHResolver mixin for DBIx::Skinny.
WWW: http://search.cpan.org/dist/DBIx-Skinny-Mixin-DBHResolver/
2010-11-28 23:04:14 +00:00
Philip M. Gollucci
6d677d8855 Flask-SQLAlchemy adds support for SQLAlchemy to your Flask application.
WWW:    http://pypi.python.org/pypi/Flask-SQLAlchemy

PR:		ports/151626
Submitted by:	Olivier Duchateau <duchateau.olivier at gmail.com>
2010-11-27 02:01:35 +00:00
Andrej Zverev
90fa387e9a This module allows you to put the arguments to "add_column" in
DBIx::Class::ResultSource right into your attribute definitions and will
automatically call it when it finds an add_column attribute option.  It also
replaces the DBIx::Class-generated accessor methods (these are
Class::Accessor::Grouped-generated accessor methods under the hood) with the
Moose-generated accessor methods so that you can use more of the wonderful
powers of Moose (eg. type constraints, triggers, ...).
2010-11-21 11:52:42 +00:00
Jun Kuriyama
42834d8906 DBIx::Skinny::InflateColumn::DateTime provides inflate/deflate
settings for *_at/*_on columns.

If you want to set created_XX and updated_XX automatically, you can
use DBIx::Class::InflateColumn::DateTime::Auto.

WWW: http://search.cpan.org/dist/DBIx-Skinny-InflateColumn-DateTime/
2010-11-20 11:23:10 +00:00
Jun Kuriyama
a60c9365e4 DBIx::Skinny::Schema::Loader is schema loader for DBIx::Skinny. It
can dynamically load schema at run-time or statically publish them.

It supports MySQL and SQLite, and PostgreSQL.

WWW: http://search.cpan.org/dist/DBIx-Skinny-Schema-Loader/
2010-11-20 10:52:36 +00:00
Jun Kuriyama
b08a49246b DBIx::Skinny::Pager is resultset pager interface for
DBIx::Skinny. This module is not support for search_by_sql or
search_named.

WWW: http://search.cpan.org/dist/DBIx-Skinny-Pager/
2010-11-20 10:24:00 +00:00
Jun Kuriyama
8c2c17e820 DBIx::Skinny is simple DBI wrapper and simple O/R Mapper. It aims to
be lightweight, with minimal dependencies so it's easier to install.

WWW: http://search.cpan.org/dist/DBIx-Skinny/
2010-11-19 12:30:22 +00:00
Sunpoet Po-Chuan Hsieh
adac021c92 - Add mariadb 5.2.3
MariaDB is a database server that offers drop-in replacement functionality for
MySQL1. MariaDB is built by some of the original authors of MySQL, with
assistance from the broader community of Free and open source software
developers. In addition to the core functionality of MySQL, MariaDB offers a
rich set of feature enhancements including alternate storage engines, server
optimizations, and patches.

MariaDB is primarily driven by developers at Monty Program, a company founded by
Michael "Monty" Widenius, the original author of MySQL, but this is not the
whole story about MariaDB. On the "About MariaDB" page you will find more
information about all participants in the MariaDB community, including storage
engines XtraDB and PBXT.

WWW: http://mariadb.org/

PR:		ports/152237
Submitted by:	Artyom Olshevskiy <siasiamail@gmail.com>
2010-11-17 16:57:21 +00:00
Martin Wilke
9b63844be6 These functions allow you to access records stored
in dBase-format (dbf) databases from within PHP.

WWW:	http://pecl.php.net/package/dbase

PR:		ports/151633
Submitted by:	toomas aas <toomas at median.ee>
2010-11-04 05:13:17 +00:00
Jun Kuriyama
714653ca9c DBIx::DBHResolver resolves database connection on the environment has
many database servers.  The resolution algorithm is extensible and
pluggable, because of this you can make custom strategy module easily.

This module can retrieve DBI's database handle object or connection
information (data source, user, credential...) by labeled name and
treat same cluster consists many nodes as one labeled name, choose
fetching strategy.

WWW: http://search.cpan.org/dist/DBIx-DBHResolver/
2010-10-17 00:45:25 +00:00
Jun Kuriyama
3c3e220fdb DBIx::Connector provides a simple interface for fast and safe DBI
connection and transaction management.  Connecting to a database can
be expensive; you don't want your application to re-connect every time
you need to run a query.  The efficient thing to do is to hang on to a
database handle to maintain a connection to the database in order to
minimize that overhead.  DBIx::Connector lets you do that without
having to worry about dropped or corrupted connections.

WWW: http://search.cpan.org/dist/DBIx-Connector/
2010-10-16 07:03:34 +00:00
Jun Kuriyama
7cddfe7e59 - Upgrade to 3.0 after repocopied to pgpool-II-23.
PR:		ports/150907
Submitted by:	Mikhail Tsatsenko <m.tsatsenko@mail.ru>
2010-10-13 11:49:12 +00:00
Palle Girgensohn
060a528952 Update all PostgreSQL ports to latest versions.
Also, try to break the previous 1:1 relation between FreeBSD system and
PostgreSQL versions installed. Use different PREFIX:es to install
different versions on the same system.

PR: ports/132402, ports/145002, ports/146657
2010-10-07 06:58:10 +00:00
Jimmy Olgeni
4391611f29 Add c3p0, a Java library for augmenting traditional (DriverManager-based)
JDBC drivers with JNDI-bindable DataSources, including DataSources
that implement Connection and Statement Pooling.
2010-09-23 15:59:11 +00:00
Philip M. Gollucci
417f3033b7 The lib_mysqludf_xql library provides an array of functions,
which can be used to create XML output directly from MySQL
using a single SQL query. This prevents having to convert a
MySQL result to XML in a PHP script, Ruby script, etc.

The library provides the same functionality as SQL/XML, seen
in MS SQL server and Oracle. However it uses normal functions.
By using subqueries the same results as SQL/XML can be generated.

WWW: http://www.mysqludf.org/lib_mysqludf_xql/index.php

PR:		ports/142086
Submitted by:	Mina R Waheeb <syncer at gmail.com>
2010-09-23 02:35:54 +00:00
Matthias Andree
9078d26a63 New version 5.1 of Oracle Berkeley DB 5.0, descended and repocopied from db50. 2010-09-21 09:29:37 +00:00
Sergey A. Osokin
d4cdf34e25 Disconnect from build redis-devel.
Connect to build redis1.
2010-09-20 17:48:16 +00:00
Wen Heping
78fe1f23f9 Swift is a highly available, distributed, eventually consistent
object/blob store.

WWW:    http://launchpad.net/swift

PR:		ports/150063
Submitted by:	Gea-Suan Lin <gslin@gslin.org>
2010-09-17 03:13:32 +00:00
Baptiste Daroussin
1d16ff67be SOCI is a database access library for C++ that makes the illusion of embedding
SQL queries in the regular C++ code, staying entirely within the Standard C++.
The idea is to provide C++ programmers a way to access SQL databases in the most
natural and intuitive way. If you find existing libraries too difficult for your
needs or just distracting, SOCI can be a good alternative.

WWW:	http://soci.sourceforge.net/

PR:		ports/150527
Submitted by:	Julien Laffaye <kimelto at gmail.com>
2010-09-15 13:27:01 +00:00
Renato Botelho
4025cbbf33 Remove ports with EXPIRATION_DATE set
2010-09-05 databases/sqlite-ext-inet: Please install databases/sqlite-ext-mobigroup instead
2010-08-31 devel/codeville: Dead project.
2010-08-07 editors/koffice-kde4-l10n-fy
2010-08-07 editors/koffice-kde4-l10n-hne
2010-06-14 graphics/xaralx-devel: Does not compile with png-1.4 and latest version is from Aug 2006
2010-06-14 graphics/xaralx: Does not compile with png-1.4 and latest version is from Aug 2006
2010-04-01 misc/kde4-l10n-bn_IN
2010-04-01 misc/kde4-l10n-hne
2010-04-01 misc/kde4-l10n-ku
2010-04-01 misc/kde4-l10n-mr
2010-09-14 11:51:42 +00:00
Philip M. Gollucci
4efbad704c MySQL Adapter for DataMapper
WWW: http://github.com/datamapper/dm-mysql-adapter

PR:		ports/150469
Submitted by:	Jyun-Yan You <jyyou at cs.nctu.edu.tw>
2010-09-11 20:14:41 +00:00
Philip M. Gollucci
b5d5a59f36 DataObjects Adapter for DataMapper
WWW: http://github.com/datamapper/dm-do-adapter

PR:		ports/150468
Submitted by:	Jyun-Yan You <jyyou at cs.nctu.edu.tw>
2010-09-11 20:14:14 +00:00
Wesley Shields
d881a47106 Remove databases/mongodb-devel. It was older than the non -devel and was
not going to be updated by the maintainer.
Remove conflicts that no longer apply in databases/mongodb.

PR:		ports/148966
Submitted by:	wxs@
Approved by:	ivoras@ (maintainer of databases/mongodb-devel)
2010-09-11 12:32:25 +00:00
Doug Barton
12c1d27aee As previously advertised, remove the remaining ports that have no
SHA256 checksum information in the distinfo file.
2010-09-05 01:06:44 +00:00
Philip M. Gollucci
7bd33b57b4 Presenting Rails 3.0
http://weblog.rubyonrails.org/2010/8/29/rails-3-0-it-s-done

N.B.:
  lang/ruby19 does not work with rails3 until the upgrade to 1.9.2
  by stas@ happens.

- Update www/rubygem-rails to 3.0.0

Sponsored by:       RideCharge Inc. / Taximagic
2010-09-02 02:43:28 +00:00
Philip M. Gollucci
1ee4780f99 BigRecord is built from ActiveRecord, and intended to seamlessly integrate
into your Ruby on Rails applications.

WWW: http://www.bigrecord.org/
2010-08-27 01:29:50 +00:00
Philip M. Gollucci
32ec46f2bb DataMapper is a Object Relational Mapper written in Ruby. The goal is to create
an ORM which is fast, thread-safe and feature rich.

                Please Welcome 1.0.0

http://datamapper.org/

PR:             ports/147800
Submitted by:   myself (pgollucci)
Sponsored by:   RideCharge Inc. / TaxiMagic
2010-08-27 01:09:44 +00:00
Li-Wen Hsu
c443cfcf3e Add my2cego 1.0.0, imports mysqldump files into cego.
PR:		ports/149782
Submitted by:	Kurt Jaeger <fbsd-ports at opsec.eu>
2010-08-22 12:52:07 +00:00
Sergey Skvortsov
5ce8467a52 Add hypertable , high performance distributed data storage system. 2010-08-20 11:13:23 +00:00
Sergey A. Osokin
e4943dc60d Connect to build databases/redis-devel. 2010-08-15 09:25:21 +00:00
Greg Larkin
579520ca91 These SQLite extension libraries provide the following functions:
IPv4 functions (loaded with ".load libsqliteipv4.so"):
  ISINNET, ISSAMENET
  IP2INT, INT2IP
  NETFROM, NETTO
  NETLENGTH, NETMASKLENGTH

Shell environment functions (loaded with ".load libsqliteenv.so"):
  CURRENT_USER
  CURRENT_LOCALE
  GETENV

MD5 message-digest algorithm functions (loaded with ".load libsqlitemd5.so"):
  GROUP_MD5
  MD5
  MD5FILE

WWW: http://sqlite.mobigroup.ru/wiki?name=extensions

PR:		ports/149053
Submitted by:	Pavel Volkov <pavelivolkov at googlemail.com>
2010-08-11 14:39:09 +00:00
Sylvio Cesar Teixeira
515764819e A DBI driver for the Cego database for Perl 5
Many more details are available at:

WWW:	http://www.lemke-it.com/

PR:		ports/148331
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu>
Feature safe:	yes
2010-07-07 14:06:02 +00:00
Wen Heping
d01c3db229 PostgreSQL::PLPerl::Trace is simple way to trace execution of
Perl statements in PL/Perl.

WWW:    http://search.cpan.org/dist/PostgreSQL-PLPerl-Trace/

PR:		ports/148352
Submitted by:	Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
Feature safe:	yes
2010-07-04 03:36:12 +00:00
Wen Heping
e3ff0b9d15 PostgreSQL::PLPerl::Call is a simple interface for calling SQL functions
from PostgreSQL PL/Perl.

WWW:    http://search.cpan.org/dist/PostgreSQL-PLPerl-Call/

PR:		ports/148351
Submitted by:	Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
Feature safe:	yes
2010-07-04 02:55:25 +00:00
Martin Wilke
78deb64942 Cego is a Relational Database Management System (RDBMS). Cego
supports transactional SQL query requests in a multithreaded
architecture. For high availablility requirements, Cego supports a
database shadowing feature. Several compute nodes can be defined in
a Cego database configuration, where each node is able to manage a
number of so called table sets. For each tableset, a backup node
can be defined, which runs is recover mode for the corresponding
tableset. If required, the tableset can be switched to the backup
node and this node gets the active node for the tableset.

Many more details are available at:

WWW: http://www.lemke-it.com/

PR:		ports/147822
Submitted by:	Kurt Jaeger <fbsd-ports at opsec.eu>
Feature safe:	yes
2010-07-01 05:49:29 +00:00
Philip M. Gollucci
1e9c6f7732 If you like Ima::DBI but need it to be more context-aware i
(eg: tie dbi connections to more than the name and process id)
then you need Ima::DBI::Contextual.

WWW: http://search.cpan.org/dist/Ima-DBI-Contextual
2010-06-09 05:44:52 +00:00
Wesley Shields
585086eca1 This port has been broken for a while with no update from maintainer
or upstream. Putting it in the Attic for now.

PR:		ports/141139
Submitted by:	Vyacheslav <f.fenix@gmail.com>
Approved by:	maintainer timeout
2010-06-04 10:42:15 +00:00
Martin Wilke
8715b1f933 mysqlsniffer is a tcpdump clone specifically for dumping/sniffing/watching MySQL
network protocol traffic over TCP/IP networks.
mysqlsniffer is coded in C using the pcap library and works with MySQL version
4.0 and newer. mysqlsniffer is the only MySQL-specific network sniffer.

WWW: http://hackmysql.com/mysqlsniffer

PR:		ports/147079
Submitted by:	Frederic Hardy <frederic.hardy at mageekbox.net>
2010-06-03 17:07:57 +00:00