db flay
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 435
db-Apnea
db-Apnea is a simple KDM theme made up off pictures of the lovely Apnea. more>>
db-Apnea is a simple KDM theme made up off pictures of the lovely Apnea.
There are two different downloads, one for 1024x768 resolution and one for 1280x1024. I might update with some more in the future, especially if requested.
Pictures from, lithiumpicnic(http://www.lithiumpicnic.com) at deviantart.com
<<lessThere are two different downloads, one for 1024x768 resolution and one for 1280x1024. I might update with some more in the future, especially if requested.
Pictures from, lithiumpicnic(http://www.lithiumpicnic.com) at deviantart.com
Download (MB)
Added: 2007-03-08 License: GPL (GNU General Public License) Price:
961 downloads
DB_File 1.815
DB_File is a Perl5 access to Berkeley DB version 1.x. more>>
DB_File is a Perl5 access to Berkeley DB version 1.x.
SYNOPSIS
use DB_File;
[$X =] tie %hash, DB_File, [$filename, $flags, $mode, $DB_HASH] ;
[$X =] tie %hash, DB_File, $filename, $flags, $mode, $DB_BTREE ;
[$X =] tie @array, DB_File, $filename, $flags, $mode, $DB_RECNO ;
$status = $X->del($key [, $flags]) ;
$status = $X->put($key, $value [, $flags]) ;
$status = $X->get($key, $value [, $flags]) ;
$status = $X->seq($key, $value, $flags) ;
$status = $X->sync([$flags]) ;
$status = $X->fd ;
# BTREE only
$count = $X->get_dup($key) ;
@list = $X->get_dup($key) ;
%list = $X->get_dup($key, 1) ;
$status = $X->find_dup($key, $value) ;
$status = $X->del_dup($key, $value) ;
# RECNO only
$a = $X->length;
$a = $X->pop ;
$X->push(list);
$a = $X->shift;
$X->unshift(list);
@r = $X->splice(offset, length, elements);
# DBM Filters
$old_filter = $db->filter_store_key ( sub { ... } ) ;
$old_filter = $db->filter_store_value( sub { ... } ) ;
$old_filter = $db->filter_fetch_key ( sub { ... } ) ;
$old_filter = $db->filter_fetch_value( sub { ... } ) ;
untie %hash ;
untie @array ;
DB_File is a module which allows Perl programs to make use of the facilities provided by Berkeley DB version 1.x (if you have a newer version of DB, see "Using DB_File with Berkeley DB version 2 or greater"). It is assumed that you have a copy of the Berkeley DB manual pages at hand when reading this documentation. The interface defined here mirrors the Berkeley DB interface closely.
Berkeley DB is a C library which provides a consistent interface to a number of database formats. DB_File provides an interface to all three of the database types currently supported by Berkeley DB.
<<lessSYNOPSIS
use DB_File;
[$X =] tie %hash, DB_File, [$filename, $flags, $mode, $DB_HASH] ;
[$X =] tie %hash, DB_File, $filename, $flags, $mode, $DB_BTREE ;
[$X =] tie @array, DB_File, $filename, $flags, $mode, $DB_RECNO ;
$status = $X->del($key [, $flags]) ;
$status = $X->put($key, $value [, $flags]) ;
$status = $X->get($key, $value [, $flags]) ;
$status = $X->seq($key, $value, $flags) ;
$status = $X->sync([$flags]) ;
$status = $X->fd ;
# BTREE only
$count = $X->get_dup($key) ;
@list = $X->get_dup($key) ;
%list = $X->get_dup($key, 1) ;
$status = $X->find_dup($key, $value) ;
$status = $X->del_dup($key, $value) ;
# RECNO only
$a = $X->length;
$a = $X->pop ;
$X->push(list);
$a = $X->shift;
$X->unshift(list);
@r = $X->splice(offset, length, elements);
# DBM Filters
$old_filter = $db->filter_store_key ( sub { ... } ) ;
$old_filter = $db->filter_store_value( sub { ... } ) ;
$old_filter = $db->filter_fetch_key ( sub { ... } ) ;
$old_filter = $db->filter_fetch_value( sub { ... } ) ;
untie %hash ;
untie @array ;
DB_File is a module which allows Perl programs to make use of the facilities provided by Berkeley DB version 1.x (if you have a newer version of DB, see "Using DB_File with Berkeley DB version 2 or greater"). It is assumed that you have a copy of the Berkeley DB manual pages at hand when reading this documentation. The interface defined here mirrors the Berkeley DB interface closely.
Berkeley DB is a C library which provides a consistent interface to a number of database formats. DB_File provides an interface to all three of the database types currently supported by Berkeley DB.
Download (0.085MB)
Added: 2007-08-02 License: Perl Artistic License Price:
498 downloads
Debmarshal
Debmarshal is a Debian repository management system. more>>
Debmarshal is a Debian repository management system. The project is designed to manage a set of local release tracks of modified and additional packages on top of a full public repository (eg. Ubuntu/dapper, Debian/sid ...).
The local database is Berkeley DB for speed. Packaged file overlaps and undeclared dependency problems can be detected. Multiple labels and permanent numbered snapshots are a feature of debmarshal managed repositories.
<<lessThe local database is Berkeley DB for speed. Packaged file overlaps and undeclared dependency problems can be detected. Multiple labels and permanent numbered snapshots are a feature of debmarshal managed repositories.
Download (MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
808 downloads
Db::DFC 0.4
Db::DFC is the Perls Object-oriented interface to Documentums DFC. more>>
Db::DFC is the Perls Object-oriented interface to Documentums DFC.
SYNOPSIS
use Db::DFC;
$dfc = Db::DFC->new();
$DOCBASE = "docbase";
$USER = "user";
$PASSWORD = "passwd";
$DOMAIN = "domain";
$FILE = $0;
$dfclient = DfClient->new();
$idfclient = $dfclient->getLocalClient();
$idflogininfo = DfLoginInfo->new();
$idflogininfo->setUser($USER);
$idflogininfo->setPassword($PASSWORD);
$idflogininfo->setDomain($DOMAIN);
$idfsession = $idfclient->newSession($DOCBASE,$idflogininfo);
$pobj = $idfsession->newObject("dm_document");
$doc = $dfc->castToIDfDocument($pobj);
$doc->setObjectName("this file");
$doc->setContentType("crtext");
$doc->setFile($FILE);
$doc->save();
print "nDocument Id:" . $doc->getObjectId()->toString() . " created.n";
$idfsession->disconnect;
<<lessSYNOPSIS
use Db::DFC;
$dfc = Db::DFC->new();
$DOCBASE = "docbase";
$USER = "user";
$PASSWORD = "passwd";
$DOMAIN = "domain";
$FILE = $0;
$dfclient = DfClient->new();
$idfclient = $dfclient->getLocalClient();
$idflogininfo = DfLoginInfo->new();
$idflogininfo->setUser($USER);
$idflogininfo->setPassword($PASSWORD);
$idflogininfo->setDomain($DOMAIN);
$idfsession = $idfclient->newSession($DOCBASE,$idflogininfo);
$pobj = $idfsession->newObject("dm_document");
$doc = $dfc->castToIDfDocument($pobj);
$doc->setObjectName("this file");
$doc->setContentType("crtext");
$doc->setFile($FILE);
$doc->save();
print "nDocument Id:" . $doc->getObjectId()->toString() . " created.n";
$idfsession->disconnect;
Download (0.080MB)
Added: 2007-05-24 License: Perl Artistic License Price:
884 downloads
JamDB 0.9.9
JamDB (Just another music DB) is a fast PHP-based music database. more>>
JamDB (Just another music DB) is a fast PHP-based music database that can be used with many different databases. (JamDB is well tested with MySQL and PostgreSQL). All MP3s can easily be searched for artists, albums, and songs.
A user can choose to download a song or add a single song, an album, all songs of an artist, or his search result directly to the playlist of XMMS/Winamp/etc. This can be done via the Web, NFS, Samba, or any other possibilty to access the MP3 files. JamDB has a simple session-based user management and other neat features.
<<lessA user can choose to download a song or add a single song, an album, all songs of an artist, or his search result directly to the playlist of XMMS/Winamp/etc. This can be done via the Web, NFS, Samba, or any other possibilty to access the MP3 files. JamDB has a simple session-based user management and other neat features.
Download (0.097MB)
Added: 2006-05-12 License: GPL (GNU General Public License) Price:
1264 downloads
DB Copy Plugin 1.0
DB Copy Plugin is a database copying plugin for the SQuirreL SQL Client. more>>
DB Copy Plugin is a database copying plugin for the SQuirreL SQL Client. DB Copy Plugin makes it possible to copy and paste tables from one session to another and between different databases and includes primary key and foreign key constraints for copied tables, and uses Hibernate 3.0 internally to perform database object type mappings.
It supports Firebird, Oracle, Sybase, MS SQL Server, MySQL, HyperSonic, Pointbase, and PostgreSQL, and allows the user to select a Hibernate dialect for the destination database if one couldnt be determined automatically.
Enhancements:
- Ran latest version of findbugs (http://findbugs.sourceforge.net/) and fixed Ran latest version of findbugs (http://findbugs.sourceforge.net/) and fixed
<<lessIt supports Firebird, Oracle, Sybase, MS SQL Server, MySQL, HyperSonic, Pointbase, and PostgreSQL, and allows the user to select a Hibernate dialect for the destination database if one couldnt be determined automatically.
Enhancements:
- Ran latest version of findbugs (http://findbugs.sourceforge.net/) and fixed Ran latest version of findbugs (http://findbugs.sourceforge.net/) and fixed
Download (2.5MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1108 downloads
p0f-db 2.0.8
p0f-db project is a modified version of p0f that puts its data into a database. more>>
p0f-db project is a modified version of p0f that puts its data into a database.
Usage:
All the standard p0f options applies. To get p0f to log data into DB you need:
- Get modified p0f files (see links at the end of this page).
- Extract them from the tarball.
- Compile and install p0f with modified "mk/Linux" (this is a Makefile) according to your DB type, include paths, library paths and any other compiler options.
- Create DB and tables for p0f (see "create_..." files in downloaded tarball).
- Modify your "/etc/p0f/p0f-db.conf" to reflect your DB setup.
- Run p0f and see tables populating.
<<lessUsage:
All the standard p0f options applies. To get p0f to log data into DB you need:
- Get modified p0f files (see links at the end of this page).
- Extract them from the tarball.
- Compile and install p0f with modified "mk/Linux" (this is a Makefile) according to your DB type, include paths, library paths and any other compiler options.
- Create DB and tables for p0f (see "create_..." files in downloaded tarball).
- Modify your "/etc/p0f/p0f-db.conf" to reflect your DB setup.
- Run p0f and see tables populating.
Download (0.13MB)
Added: 2006-09-21 License: GPL (GNU General Public License) Price:
656 downloads
man-db 2.4.0
man-db is a manual page browser. more>>
man-db is a manual page browser.
This package provides the man command.
This utility is the primary way of examining the on-line help files (manual pages).
It uses the groff suite of programs to format and display the manual pages.
Other utilities provided include the whatis and apropos commands for searching the manual page database, the manpath utility for determining the manual page search path, and the maintenance utilities mandb, catman, and zsoelim.
Quick Install:
RUN `./configure
EDIT configuration files/headers if necessary
RUN `make
RUN `make install
Enhancements:
- README: Update or remove references to "man-db-2.3" and similar.
- man-db.gnu: Update and sync with GNU.
- man-db.lsm: Update.
- manual/man_db.me: Replace "2.3.x" with "2.4.x".
- po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po: Update with msgmerge.
<<lessThis package provides the man command.
This utility is the primary way of examining the on-line help files (manual pages).
It uses the groff suite of programs to format and display the manual pages.
Other utilities provided include the whatis and apropos commands for searching the manual page database, the manpath utility for determining the manual page search path, and the maintenance utilities mandb, catman, and zsoelim.
Quick Install:
RUN `./configure
EDIT configuration files/headers if necessary
RUN `make
RUN `make install
Enhancements:
- README: Update or remove references to "man-db-2.3" and similar.
- man-db.gnu: Update and sync with GNU.
- man-db.lsm: Update.
- manual/man_db.me: Replace "2.3.x" with "2.4.x".
- po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po, po/it.po, po/ja.po: Update with msgmerge.
Download (0.54MB)
Added: 2006-10-04 License: GPL (GNU General Public License) Price:
1115 downloads
VCD-db 0.986
VCD-db is a Free web based software that lets you manage your DVD/VCD/CDs collection on your own website. more>>
VCD-db is a Free web based software that lets you manage your DVD/VCD/CDs collection on your own website.
VCD-db can easily add new movies with 2 clicks, movie data is automatically fetched for you from IMDB and/or other sources. VCD-db is highly flexible, runs on multiple database platforms such as ....
- MySQL 3.x
- MySQL 4.x
- MSSQL 7 and 2000
- IBM DB2 7.2 and up
- Postgres
- SQLite
Oracle support is in the making and should be available in future release.
VCD-db runs on Unix/Linux machines and Windows machines, and has been tested both on Apache 1.3x and 2.0. VCD-db also runs smoothly on IIS.
VCD-db supports multiple users so your friends can also register on your VCD-db web and start their own catalog, which can then be compared to yours for conveniance.
VCD-db has a built in loan system so you can now easily keep track of all the CDs you lend to friends and family, and even send automatic emails to ask them to return your CDs.
User catalogs can easily be exported and saved in numerious ways, such as Excel, XML and can even be exported and then imported to another VCD-db site without any hassle.
Multiple language support.
VCD-db has already been translated to English, Icelandic, Finnish, German, Dutch, French and Bulgarian.
This is just tip of the iceberg of all the features in VCD-db.
Main features:
- Enable/disable registration
- Switch image storage from database to file-level or vice versa (with all prevoius images conserved)
- Change record counts for display on list pages
- Enable/disable RSS feed from the site
- Enable/disable user RSS feeds
- Enable/disable adult movie support
- Edit mail settings and test them immediately for verification
- Change/add user roles
- Manage users, disable accounts and reset passwords
- Add user defined user properties
- Manage source sites for data retrival
- Add/edit movie categories
- Add/edit media types
- Add/edit cover types
- Associate media types to cover types
- Manage language files
- View site statistics
- Import/Export core site data on XML format
<<lessVCD-db can easily add new movies with 2 clicks, movie data is automatically fetched for you from IMDB and/or other sources. VCD-db is highly flexible, runs on multiple database platforms such as ....
- MySQL 3.x
- MySQL 4.x
- MSSQL 7 and 2000
- IBM DB2 7.2 and up
- Postgres
- SQLite
Oracle support is in the making and should be available in future release.
VCD-db runs on Unix/Linux machines and Windows machines, and has been tested both on Apache 1.3x and 2.0. VCD-db also runs smoothly on IIS.
VCD-db supports multiple users so your friends can also register on your VCD-db web and start their own catalog, which can then be compared to yours for conveniance.
VCD-db has a built in loan system so you can now easily keep track of all the CDs you lend to friends and family, and even send automatic emails to ask them to return your CDs.
User catalogs can easily be exported and saved in numerious ways, such as Excel, XML and can even be exported and then imported to another VCD-db site without any hassle.
Multiple language support.
VCD-db has already been translated to English, Icelandic, Finnish, German, Dutch, French and Bulgarian.
This is just tip of the iceberg of all the features in VCD-db.
Main features:
- Enable/disable registration
- Switch image storage from database to file-level or vice versa (with all prevoius images conserved)
- Change record counts for display on list pages
- Enable/disable RSS feed from the site
- Enable/disable user RSS feeds
- Enable/disable adult movie support
- Edit mail settings and test them immediately for verification
- Change/add user roles
- Manage users, disable accounts and reset passwords
- Add user defined user properties
- Manage source sites for data retrival
- Add/edit movie categories
- Add/edit media types
- Add/edit cover types
- Associate media types to cover types
- Manage language files
- View site statistics
- Import/Export core site data on XML format
Download (1.4MB)
Added: 2007-06-04 License: GPL (GNU General Public License) Price:
880 downloads
DB2::db 0.20
DB2::db is a framework wrapper around DBD::DB2 for a specific database. more>>
DB2::db is a framework wrapper around DBD::DB2 for a specific database.
SYNOPSIS
package myDB;
use DB2::db
our @ISA = qw( DB2::db );
...
use myDB;
my $db = myDB->new;
my $tbl = $db->get_table(myTable);
my $row = $tbl->find($id);
The DB2::db module can simplify your interaction with a DB2 database using the DBI module. The cost is generally a little bit of speed since it cannot know which columns you may be interested in. This is not always bad since you may not know either.
Please note that unlike many of the DBIx::* modules, this framework is intended to create your tables (and database) as well as manage them. Most DBIx modules will assume your tables are already created and leave the ability to recreate your tables up to you. The design for DB2::db is intended to allow you to develop on one machine and deploy on another with a little less effort. In exchange, however, it can be significantly more work to set up your perl scripts in the first place. That said, the extra work in setting up your perl modules is probably only a little more than the work it would require to create a DDL script to create all your tables.
<<lessSYNOPSIS
package myDB;
use DB2::db
our @ISA = qw( DB2::db );
...
use myDB;
my $db = myDB->new;
my $tbl = $db->get_table(myTable);
my $row = $tbl->find($id);
The DB2::db module can simplify your interaction with a DB2 database using the DBI module. The cost is generally a little bit of speed since it cannot know which columns you may be interested in. This is not always bad since you may not know either.
Please note that unlike many of the DBIx::* modules, this framework is intended to create your tables (and database) as well as manage them. Most DBIx modules will assume your tables are already created and leave the ability to recreate your tables up to you. The design for DB2::db is intended to allow you to develop on one machine and deploy on another with a little less effort. In exchange, however, it can be significantly more work to set up your perl scripts in the first place. That said, the extra work in setting up your perl modules is probably only a little more than the work it would require to create a DDL script to create all your tables.
Download (0.020MB)
Added: 2007-06-19 License: Perl Artistic License Price:
863 downloads
db2dot 0.2.2
db2dot reverse engineers an existing database and produces an ER diagram in dot format. more>>
db2dot reverse engineers an existing database and produces an ER diagram in dot format.
The dot file can be fed through graphvizs dot to produce a pretty ER diagram. The diagram includes tables and relationships derived from db meta-data and foreign key constraints.
What format is the output?
It generates a dot file which can be turned into a diagram with the graphviz utility.
What database servers will it work with?
It has only been tested with MySQLs JDBC driver, but it uses only
generic java.sql.* classes so it should work with any JDBC driver which is
sufficiently advanced.
What license is the code released under?
db2dot is released under the GPL v2.0 license.
How do I build the source?
Run: ant build jar
What are the command line arguments?
The command line arguments may be in any order, the following are required:
driver=< JDBCDriver class >
url=< db connection url >
user=< db user name >
pass=< db password >
The following are optional:
+showRelations
+showColumns
<<lessThe dot file can be fed through graphvizs dot to produce a pretty ER diagram. The diagram includes tables and relationships derived from db meta-data and foreign key constraints.
What format is the output?
It generates a dot file which can be turned into a diagram with the graphviz utility.
What database servers will it work with?
It has only been tested with MySQLs JDBC driver, but it uses only
generic java.sql.* classes so it should work with any JDBC driver which is
sufficiently advanced.
What license is the code released under?
db2dot is released under the GPL v2.0 license.
How do I build the source?
Run: ant build jar
What are the command line arguments?
The command line arguments may be in any order, the following are required:
driver=< JDBCDriver class >
url=< db connection url >
user=< db user name >
pass=< db password >
The following are optional:
+showRelations
+showColumns
Download (0.011MB)
Added: 2005-12-13 License: GPL (GNU General Public License) Price:
1411 downloads
SimpleCDB 1.0
SimpleCDB - A Perl-only Constant Database. more>>
SimpleCDB - A Perl-only Constant Database.
SYNOPSIS
use SimpleCDB;
# writer
# - tie blocks until DB is available (exclusive), or timeout
tie %h, SimpleCDB, db, O_WRONLY
or die "tie failed: $SimpleCDB::ERRORn";
$h{$k} = $v;
die "store: $SimpleCDB::ERROR" if $SimpleCDB::ERROR;
untie %h; # release DB (exclusive) lock
# reader
# - tie blocks until DB is available (shared), or timeout
tie %h, SimpleCDB, db, O_RDONLY
or die "tie failed: $SimpleCDB::ERRORn";
$v = $h{$i};
die "fetch: $SimpleCDB::ERROR" if $SimpleCDB::ERROR;
untie %h; # release DB (shared) lock
This is a simple perl-only DB intended for constant DB applications. A constant DB is one which, once created, is only ever read from (though this implementation allows appending of new data). That is, this is an "append-only DB" - records may only be added and/or extracted.
Course-grained locking provided to allow multiple users, as per flock semantics (i.e. write access requires an exclusive lock, read access needs a shared lock (see notes below re. perl < 5.004)). As (exclusive) updates may be take some time to complete, shared lock attempts will timeout after a defined waiting period (returning $! == EWOULDBLOCK). Concurrent update attempts will behave similarly, but with a longer timeout.
The DB files are simple flat files, with one record per line. Records (both keys and values) may be arbitrary (binary) data. Records are extracted from these files via a plain linear search. Unsurprisingly, this search is a relatively inefficient operation. To improve extraction speed, records are randomly distributed across N files, with the average search space is reduced by 1/N compared to a single file. (See below for some example performance times.) One advantage of this flat file based solution is that the DB is human readable (assuming the data is), and with some care can be edited with a plain ol text editor.
Finally, note that this DB does not support duplicate entries. In practice, the first record found matching a given key is returned, any duplicates will be ignored.
<<lessSYNOPSIS
use SimpleCDB;
# writer
# - tie blocks until DB is available (exclusive), or timeout
tie %h, SimpleCDB, db, O_WRONLY
or die "tie failed: $SimpleCDB::ERRORn";
$h{$k} = $v;
die "store: $SimpleCDB::ERROR" if $SimpleCDB::ERROR;
untie %h; # release DB (exclusive) lock
# reader
# - tie blocks until DB is available (shared), or timeout
tie %h, SimpleCDB, db, O_RDONLY
or die "tie failed: $SimpleCDB::ERRORn";
$v = $h{$i};
die "fetch: $SimpleCDB::ERROR" if $SimpleCDB::ERROR;
untie %h; # release DB (shared) lock
This is a simple perl-only DB intended for constant DB applications. A constant DB is one which, once created, is only ever read from (though this implementation allows appending of new data). That is, this is an "append-only DB" - records may only be added and/or extracted.
Course-grained locking provided to allow multiple users, as per flock semantics (i.e. write access requires an exclusive lock, read access needs a shared lock (see notes below re. perl < 5.004)). As (exclusive) updates may be take some time to complete, shared lock attempts will timeout after a defined waiting period (returning $! == EWOULDBLOCK). Concurrent update attempts will behave similarly, but with a longer timeout.
The DB files are simple flat files, with one record per line. Records (both keys and values) may be arbitrary (binary) data. Records are extracted from these files via a plain linear search. Unsurprisingly, this search is a relatively inefficient operation. To improve extraction speed, records are randomly distributed across N files, with the average search space is reduced by 1/N compared to a single file. (See below for some example performance times.) One advantage of this flat file based solution is that the DB is human readable (assuming the data is), and with some care can be edited with a plain ol text editor.
Finally, note that this DB does not support duplicate entries. In practice, the first record found matching a given key is returned, any duplicates will be ignored.
Download (0.015MB)
Added: 2007-05-14 License: Perl Artistic License Price:
893 downloads
DB Designer Fork 1.3
DB Designer Fork is a fork of the fabFORCE DBDesigner 4. more>>
DB Designer Fork is a fork of the fabFORCE DBDesigner 4. DBDesigner is a visual database design system that integrates entity relationship design and database creation.
The project generates SQL scripts for Oracle, SQL Server, MySQL, and FireBird.
<<lessThe project generates SQL scripts for Oracle, SQL Server, MySQL, and FireBird.
Download (11MB)
Added: 2007-05-11 License: GPL (GNU General Public License) Price:
923 downloads
Audio::DB 0.01
Audio::DB are tools for generating relational databases of MP3s. more>>
Audio::DB are tools for generating relational databases of MP3s.
SYNOPSIS
use Audio::DB;
my $mp3 = Audio::DB->new(-user =>user,
-pass =>password,
-host =>db_host,
-dsn =>music_db,
-adaptor => mysql);
$mp3->initialize(1);
$mp3->load_database(-dirs =>[/path/to/MP3s/],
-tmp =>/tmp);
Audio::DB is a module for creating relational databases of MP3 files directly from data stored in ID3 tags or from flatfiles of information of track information. Once created, Audio::DB provides various methods for creating reports and web pages of your collection.
Although its nutritious and delicious on its own, Audio::DB was created for use with Apache::Audio::DB, a subclass of Apache::MP3. This module makes it easy to make your collection web-accessible, complete with browsing, searching, streaming, multiple users, playlists, ratings, and more!
<<lessSYNOPSIS
use Audio::DB;
my $mp3 = Audio::DB->new(-user =>user,
-pass =>password,
-host =>db_host,
-dsn =>music_db,
-adaptor => mysql);
$mp3->initialize(1);
$mp3->load_database(-dirs =>[/path/to/MP3s/],
-tmp =>/tmp);
Audio::DB is a module for creating relational databases of MP3 files directly from data stored in ID3 tags or from flatfiles of information of track information. Once created, Audio::DB provides various methods for creating reports and web pages of your collection.
Although its nutritious and delicious on its own, Audio::DB was created for use with Apache::Audio::DB, a subclass of Apache::MP3. This module makes it easy to make your collection web-accessible, complete with browsing, searching, streaming, multiple users, playlists, ratings, and more!
Download (0.061MB)
Added: 2006-11-11 License: GPL (GNU General Public License) Price:
1077 downloads
DB::Appgen 1.0
DB::Appgen is a Perl interface which includes both function oriented and object oriented interfaces. more>>
DB::Appgen is a Perl interface which includes both function oriented and object oriented interfaces to manipulate data in APPGEN Custom Suite databases.
All this was made in about four hours including reading perlxstut manpage, so do not expect something pretty. Although it appears to be working OK in my tests.
Ill be doing some bigger data manipulations using this extension in the next couple of days and I will probably build some kind of higher level interface. If you dont see it on CPAN yet feel free to ask me about it.
<<lessAll this was made in about four hours including reading perlxstut manpage, so do not expect something pretty. Although it appears to be working OK in my tests.
Ill be doing some bigger data manipulations using this extension in the next couple of days and I will probably build some kind of higher level interface. If you dont see it on CPAN yet feel free to ask me about it.
Download (0.009MB)
Added: 2006-05-24 License: GPL (GNU General Public License) Price:
1251 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 db flay 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