druide db
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 435
Druide DB 0.9.6
Druide DB project is a simple XML file database API in Java to manage an XML database file system more>>
Druide DB project is a simple XML file database API in Java to manage an XML database file system without database complexity (no server or client, and stores only strings).
You should try DruideDB if you are doing the following :
- If you are writing a simple application (swing, awt, RCP, ...) that needs to store some kinds of data in the simpliest way,
- If you need a DataBase whitout installing a server or a client on the final users computer,
- If you dont know SQL and your application needs a DataBase but you dont want to deal with all the pool stuff and inherent complexity,
- If you want to try DruideDB,
- If you think Im a genius (well dont tell it, nobody will believe you !)
<<lessYou should try DruideDB if you are doing the following :
- If you are writing a simple application (swing, awt, RCP, ...) that needs to store some kinds of data in the simpliest way,
- If you need a DataBase whitout installing a server or a client on the final users computer,
- If you dont know SQL and your application needs a DataBase but you dont want to deal with all the pool stuff and inherent complexity,
- If you want to try DruideDB,
- If you think Im a genius (well dont tell it, nobody will believe you !)
Download (0.039MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
911 downloads
Gladius DB 0.7.0
Gladius DB is a fast and efficient PHP flatfile database engine written in pure PHP. more>>
Gladius DB is a fast and efficient PHP flatfile database engine written in pure PHP; its SQL syntax is compatible with a subset of intermediate SQL92.
You will not need any specific extension to have it work, and it is bundled with an adoDB lite driver.
This project is licensed under the GNU General Public License, be sure to have read and understood it before using Gladius in your own software.
SQL Conformance
The formal name of the SQL standard is ISO/IEC 9075 "Database Language SQL". The version this document refers to is ISO/IEC 9075:2003, or simply SQL:2003. The versions prior to that were SQL:1999 and SQL-92. Each version supersedes the previous one, so claims of conformance to earlier versions have no official standing.
Starting with SQL:1999, the SQL standard defines a large set of individual features rather than the three levels (Entry, Intermediate and Full) declared in SQL-92. A large subset of these features represents the "Core" (mandatory) features, SQL implementation must supply in order to claim conformance. The rest of the features are purely optional.
In the following sections, we provide a list of all SQL:2003 features with an indication of whether it is supported by Gladius DB; every feature consists of an unique identifier and a name. Feature identifiers containing a hyphen are subfeatures. If a particular subfeature is not supported, the main feature is listed as partly supported. Comments are provided where necessary.
Version restrictions:
- performance slowdown with a huge number of records
- no storage gain for binary fields (for example, numbers)
- non-validating SQL parser (an SQL query that works with Gladius may not be syntactically correct)
- all strings are considered binary and should always be Unicode safe
- no specific collation or character set support
- cannot SELECT calculated or immediate values
- CHAR VARYING, DOUBLE PRECISION and INTERVAL data types (specified in the SQL92 standard) are not recognized
- no specific date/time functions (as of Gladius DB v0.6.2)
<<lessYou will not need any specific extension to have it work, and it is bundled with an adoDB lite driver.
This project is licensed under the GNU General Public License, be sure to have read and understood it before using Gladius in your own software.
SQL Conformance
The formal name of the SQL standard is ISO/IEC 9075 "Database Language SQL". The version this document refers to is ISO/IEC 9075:2003, or simply SQL:2003. The versions prior to that were SQL:1999 and SQL-92. Each version supersedes the previous one, so claims of conformance to earlier versions have no official standing.
Starting with SQL:1999, the SQL standard defines a large set of individual features rather than the three levels (Entry, Intermediate and Full) declared in SQL-92. A large subset of these features represents the "Core" (mandatory) features, SQL implementation must supply in order to claim conformance. The rest of the features are purely optional.
In the following sections, we provide a list of all SQL:2003 features with an indication of whether it is supported by Gladius DB; every feature consists of an unique identifier and a name. Feature identifiers containing a hyphen are subfeatures. If a particular subfeature is not supported, the main feature is listed as partly supported. Comments are provided where necessary.
Version restrictions:
- performance slowdown with a huge number of records
- no storage gain for binary fields (for example, numbers)
- non-validating SQL parser (an SQL query that works with Gladius may not be syntactically correct)
- all strings are considered binary and should always be Unicode safe
- no specific collation or character set support
- cannot SELECT calculated or immediate values
- CHAR VARYING, DOUBLE PRECISION and INTERVAL data types (specified in the SQL92 standard) are not recognized
- no specific date/time functions (as of Gladius DB v0.6.2)
Download (0.056MB)
Added: 2007-07-16 License: GPL (GNU General Public License) Price:
516 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
mod_auth_openid 0.0
mod_auth_openid is an authentication module for the Apache 2 Web server. more>>
mod_auth_openid is an authentication module for the Apache 2 Web server. It handles the functions of an OpenID consumer as specified in the OpenID 1.1 specification.
Once installed, a simple configuration directive can secure a directory or application on your Web server and require a valid OpenID identity. You can configure trusted/untrusted identity providers along with a number of other options.
Compile
Enter the mod_auth_openid directory and type:
./configure
You can use the following to see additional configuration options:
./configure --help
Then:
make
su root
make install
Depending on where you specify your AuthOpenIDDBLocation (see below), you may need to touch the db file as the user thats running Apache (or chown the directory its being stored in). For instance:
# /tmp/mod_auth_openid.db is the default location for the DB
su root
touch /tmp/mod_auth_openid.db
chown www-data /tmp/mod_auth_openid.db
<<lessOnce installed, a simple configuration directive can secure a directory or application on your Web server and require a valid OpenID identity. You can configure trusted/untrusted identity providers along with a number of other options.
Compile
Enter the mod_auth_openid directory and type:
./configure
You can use the following to see additional configuration options:
./configure --help
Then:
make
su root
make install
Depending on where you specify your AuthOpenIDDBLocation (see below), you may need to touch the db file as the user thats running Apache (or chown the directory its being stored in). For instance:
# /tmp/mod_auth_openid.db is the default location for the DB
su root
touch /tmp/mod_auth_openid.db
chown www-data /tmp/mod_auth_openid.db
Download (MB)
Added: 2007-01-17 License: GPL (GNU General Public License) Price:
1010 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
Unicode::Unihan 0.03
Unicode::Unihan is the Unihan Data Base 5.0.0. more>>
Unicode::Unihan is the Unihan Data Base 5.0.0.
SYNOPSIS
use Unicode::Unihan;
my $db = new Unicode::Unihan;
print join("," => $db->Mandarin("x{5c0f}x{98fc}x{5f3e}"), "n";
ABSTRACT
This module provides a user-friendly interface to the Unicode Unihan Database 3.2. With this module, the Unihan database is as easy as shown in the SYNOPSIS above.
The first thing you do is make the database available. Just say
use Unicode::Unihan;
my $db = new Unicode::Unihan;
Thats all you have to say. After that, you can access the database via $db->tag($string) where tag is the tag in the Unihan Database, without k prefix.
$data = $db->tag($string) =item @data = $db->tag($string)
The first form (scalar context) returns the Unihan Database entry of the first character in $string. The second form (array context) checks the entry for each character in $string.
@data = $db->Mandarin("x{5c0f}x{98fc}x{5f3e}");
# @data is now (SHAO4 XIAO3,SI4,DAN4)
@data = $db->JapaneseKun("x{5c0f}x{98fc}x{5f3e}");
# @data is now (CHIISAI KO O,KAU YASHINAU,TAMA HAZUMU HIKU)
<<lessSYNOPSIS
use Unicode::Unihan;
my $db = new Unicode::Unihan;
print join("," => $db->Mandarin("x{5c0f}x{98fc}x{5f3e}"), "n";
ABSTRACT
This module provides a user-friendly interface to the Unicode Unihan Database 3.2. With this module, the Unihan database is as easy as shown in the SYNOPSIS above.
The first thing you do is make the database available. Just say
use Unicode::Unihan;
my $db = new Unicode::Unihan;
Thats all you have to say. After that, you can access the database via $db->tag($string) where tag is the tag in the Unihan Database, without k prefix.
$data = $db->tag($string) =item @data = $db->tag($string)
The first form (scalar context) returns the Unihan Database entry of the first character in $string. The second form (array context) checks the entry for each character in $string.
@data = $db->Mandarin("x{5c0f}x{98fc}x{5f3e}");
# @data is now (SHAO4 XIAO3,SI4,DAN4)
@data = $db->JapaneseKun("x{5c0f}x{98fc}x{5f3e}");
# @data is now (CHIISAI KO O,KAU YASHINAU,TAMA HAZUMU HIKU)
Download (4.9MB)
Added: 2007-07-17 License: Perl Artistic License Price:
831 downloads
AmarokCloud 0.1
AmarokCloud is a script generates a tagcloud from your Amarok database by score or times played. more>>
AmarokCloud is a script generates a "tagcloud" from your Amarok database by score or times played.
Usage: Execute to use the (crappy) GUI or via commandline:
amarokcloud.py /path/to/collection.db datatype scoringtype
Your collection is usually at /home/user/.kde/share/apps/amarok/collection.db
Datatype is the data which you want to generate the cloud from. Its either genre or artist
Scoringtype decides how to calculate the score
The GUI is horrible, I know, but it does its job and I dont have time to learn PyQt
<<lessUsage: Execute to use the (crappy) GUI or via commandline:
amarokcloud.py /path/to/collection.db datatype scoringtype
Your collection is usually at /home/user/.kde/share/apps/amarok/collection.db
Datatype is the data which you want to generate the cloud from. Its either genre or artist
Scoringtype decides how to calculate the score
The GUI is horrible, I know, but it does its job and I dont have time to learn PyQt
Download (0.003MB)
Added: 2007-01-22 License: GPL (GNU General Public License) Price:
1007 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
Vinetto 0.07 Beta
Vinetto project is a forensics tool to examine Thumbs.db files. more>>
Vinetto project is a forensics tool to examine Thumbs.db files. The project is a command line python script that works on Linux, Mac OS X and Cygwin(win32).
Usage:
Usage: vinetto [OPTIONS] [-s] [-U] [-o DIR] file
options:
--version show programs version number and exit
-h, --help show this help message and exit
-o DIR write thumbnails to DIR
-H write html report to DIR
-U use utf8 encodings
-s create symlink of the image realname to the numbered name in
DIR/.thumbs
Metadata list will be written on standard output.
<<lessUsage:
Usage: vinetto [OPTIONS] [-s] [-U] [-o DIR] file
options:
--version show programs version number and exit
-h, --help show this help message and exit
-o DIR write thumbnails to DIR
-H write html report to DIR
-U use utf8 encodings
-s create symlink of the image realname to the numbered name in
DIR/.thumbs
Metadata list will be written on standard output.
Download (0.015MB)
Added: 2007-06-19 License: GPL (GNU General Public License) Price:
859 downloads
Berkeley DB 4.6.18
Berkeley DB, the most widely-used developer database in the world. more>>
Berkeley DB (libdb) is a programmatic toolkit that provides embedded database support for both traditional and client/server applications. Berkeley DB includes b+tree, queue, extended linear hashing, fixed, and variable-length record access methods, transactions, locking, logging, shared memory caching, database recovery, and replication for highly available systems.
Berkeley DB delivers the core data management functionality, power, scalability and flexibility of enterprise relational databases but without the overhead of a query processing layer. Combined with the stability and lower support cost of open source code, Berkeley DB offers many advantages
DB supports C, C++, Java, PHP, and Perl APIs. It is available for a wide variety of UNIX platforms as well as Windows XP, Windows NT, and Windows 95 (MSVC 6 and 7).
Sleepycat Software makes Berkeley DB, the most widely used open source developer database in the world with over 200 million deployments. Customers such as Amazon.com, AOL, British Telecom, Cisco Systems, EMC, Google, Hitachi, HP, Motorola, RSA Security, Sun Microsystems, TIBCO and VERITAS also rely on Berkeley DB for fast, scalable, reliable and cost-effective data management for their mission-critical applications. Profitable since it was founded in 1996, Sleepycat is a privately held company with offices in California, Massachusetts and the United Kingdom.
Here are the advantajes of "Berkeley DB":
- Zero administration cost ? eliminates the need for a DBA;
- Smaller footprint (less than 500Kb);
- Simplicity of integration into an application;
- More speed and higher performance;
- Less complexity and more reliability.
Berkeley DB is distributed under an open source license that permits its use in open source applications at no charge. Proprietary vendors can purchase a proprietary license for Berkeley DB from Sleepycat Software.
Other important key features of "Berkeley DB":
- Includes complete source code.
- Small footprint ? less than 500 kilobytes.
- Extremely configurable: application controls the memory, disk, and other resource requirements of the database library.
- Easy-to-use APIs for applications written in C, C++, Java, Perl, Python, Tcl, PHP.
- Supports full transaction semantics, so that multiple changes can be applied or rolled back atomically.
- Survives software and hardware failures without losing data.
- Fine-grained locking allows thousands of users to work with a database at the same time.
- Replication for high availability keeps copies of the database synchronized across multiple servers. If the master or any replica goes down, one of the remaining replicas can take over.
<<lessBerkeley DB delivers the core data management functionality, power, scalability and flexibility of enterprise relational databases but without the overhead of a query processing layer. Combined with the stability and lower support cost of open source code, Berkeley DB offers many advantages
DB supports C, C++, Java, PHP, and Perl APIs. It is available for a wide variety of UNIX platforms as well as Windows XP, Windows NT, and Windows 95 (MSVC 6 and 7).
Sleepycat Software makes Berkeley DB, the most widely used open source developer database in the world with over 200 million deployments. Customers such as Amazon.com, AOL, British Telecom, Cisco Systems, EMC, Google, Hitachi, HP, Motorola, RSA Security, Sun Microsystems, TIBCO and VERITAS also rely on Berkeley DB for fast, scalable, reliable and cost-effective data management for their mission-critical applications. Profitable since it was founded in 1996, Sleepycat is a privately held company with offices in California, Massachusetts and the United Kingdom.
Here are the advantajes of "Berkeley DB":
- Zero administration cost ? eliminates the need for a DBA;
- Smaller footprint (less than 500Kb);
- Simplicity of integration into an application;
- More speed and higher performance;
- Less complexity and more reliability.
Berkeley DB is distributed under an open source license that permits its use in open source applications at no charge. Proprietary vendors can purchase a proprietary license for Berkeley DB from Sleepycat Software.
Other important key features of "Berkeley DB":
- Includes complete source code.
- Small footprint ? less than 500 kilobytes.
- Extremely configurable: application controls the memory, disk, and other resource requirements of the database library.
- Easy-to-use APIs for applications written in C, C++, Java, Perl, Python, Tcl, PHP.
- Supports full transaction semantics, so that multiple changes can be applied or rolled back atomically.
- Survives software and hardware failures without losing data.
- Fine-grained locking allows thousands of users to work with a database at the same time.
- Replication for high availability keeps copies of the database synchronized across multiple servers. If the master or any replica goes down, one of the remaining replicas can take over.
Download (11.5MB)
Added: 2007-07-31 License: Open Software License Price:
839 downloads
Librarian DB 0.1.3
Librarian DB was originally developed for a Church library, to store its books and allow its members find books. more>>
Librarian DB was originally developed for a Church library, to store its books and allow its members find books. The project stores the following information about each book:
- Title
- Author / Editor
- ISBN
- Publisher
- Copyright year
- Categories
- Audience
- Media type (e.g. Book,DVD, CD, ...)
And since it is a Dataface application it is easy to add your own information to be stored.
Enhancements:
- This release fixes incompatibilities with PHP 4.
- Specifically, it fixes the error "Parse error: syntax error, unexpected T_OBJECT_OPERATOR in .../tables/books/books.php on line 61"
<<less- Title
- Author / Editor
- ISBN
- Publisher
- Copyright year
- Categories
- Audience
- Media type (e.g. Book,DVD, CD, ...)
And since it is a Dataface application it is easy to add your own information to be stored.
Enhancements:
- This release fixes incompatibilities with PHP 4.
- Specifically, it fixes the error "Parse error: syntax error, unexpected T_OBJECT_OPERATOR in .../tables/books/books.php on line 61"
Download (0.045MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
526 downloads
Audio::DB::Web 0.01
Audio::DB::Web is a Perl module that assists in web-based queries of an MP3 Database. more>>
Audio::DB::Web is a Perl module that assists in web-based queries of an MP3 Database.
SYNOPSIS
use Audio::DB::Web;
my $mp3->
Audio::DB is a module for creating relational databases of MP3 files directly from data stored in ID3 tags. 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::Web;
my $mp3->
Audio::DB is a module for creating relational databases of MP3 files directly from data stored in ID3 tags. 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-09-29 License: Perl Artistic License Price:
1121 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
ET Live 1.21
ET Live is a live viewer server for RTCW: Enemy Territory. more>>
ET Live project is a live viewer server for "RTCW: Enemy Territory".
Main features:
- Shows whos playing on your server, team, xp, and ping
- Shows current map.
- Makes a crude attempt to determine whos winning.
- Links player name to a systats db. (Optional)
<<lessMain features:
- Shows whos playing on your server, team, xp, and ping
- Shows current map.
- Makes a crude attempt to determine whos winning.
- Links player name to a systats db. (Optional)
Download (0.082MB)
Added: 2006-12-12 License: GPL (GNU General Public License) Price:
1047 downloads
Garlic 1.0.5
Garlic project is a Web-based personal bookmark manager. more>>
Garlic project is a Web-based personal bookmark manager.
Garlic is a Web-based personal bookmark manager which does not require a separate SQL server.
It provides full text indexing and bookmark categorization. Data is stored in Berkeley DB format, and can be exported to XML.
Garlic can build a reading list from RSS feeds, thanks to a companion application called Pesto.
<<lessGarlic is a Web-based personal bookmark manager which does not require a separate SQL server.
It provides full text indexing and bookmark categorization. Data is stored in Berkeley DB format, and can be exported to XML.
Garlic can build a reading list from RSS feeds, thanks to a companion application called Pesto.
Download (0.12MB)
Added: 2007-02-07 License: GPL (GNU General Public License) Price:
990 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 druide db 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