web frontend for access database
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 8555
The Program Database Toolkit 3.10
The Program Database Toolkit is a powerful tool infrastructure that provides access to the high-level interface of source code. more>>
The Program Database Toolkit (PDT) is a powerful tool infrastructure that provides access to the high-level interface of source code for analysis tools and applications.
Many tasks in an integrated programming environment require access to program information for their implementation. Program Database Toolkit (PDT) is a framework for analyzing source code written in several programming languages and for making rich program knowledge accessible to developers of static and dynamic analysis tools.
PDT implements a standard program representation, the program database (PDB), that can be accessed in a uniform way through a class library supporting common PDB operations. Software tools can use this library to accomplish tasks such as
- documentation of program components
- creation of graphic program browsers that show class hierarchies, function call graphs, and template instantiations
- insertion of instrumentation for performance profiling and tracing; andgeneration of interface details for calling library routines or buildinginterlanguage bindings.
Enhancements:
- Assorted minor bugfixes.
<<lessMany tasks in an integrated programming environment require access to program information for their implementation. Program Database Toolkit (PDT) is a framework for analyzing source code written in several programming languages and for making rich program knowledge accessible to developers of static and dynamic analysis tools.
PDT implements a standard program representation, the program database (PDB), that can be accessed in a uniform way through a class library supporting common PDB operations. Software tools can use this library to accomplish tasks such as
- documentation of program components
- creation of graphic program browsers that show class hierarchies, function call graphs, and template instantiations
- insertion of instrumentation for performance profiling and tracing; andgeneration of interface details for calling library routines or buildinginterlanguage bindings.
Enhancements:
- Assorted minor bugfixes.
Download (MB)
Added: 2007-03-02 License: Free To Use But Restricted Price:
967 downloads
web_traceroute 0.5
web_traceroute provides a Web frontend for traceroute. more>>
web_traceroute provides a Web frontend for traceroute.
web_traceroute is a simple program to allow your users to see the status of the network between your server and themselves.
a simple program to allow web users to see the status of the network between your server and themselves. "Bad" -- i.e., slow (>= $threshold ms) -- hops are
highlighted in red.
You set that number to whatever you think is best for your network/situation.
This tool is useful in dealing with "Your site is down" complaints when your site is *not* down, but rather there is congestion somewhere on the Internet.
<<lessweb_traceroute is a simple program to allow your users to see the status of the network between your server and themselves.
a simple program to allow web users to see the status of the network between your server and themselves. "Bad" -- i.e., slow (>= $threshold ms) -- hops are
highlighted in red.
You set that number to whatever you think is best for your network/situation.
This tool is useful in dealing with "Your site is down" complaints when your site is *not* down, but rather there is congestion somewhere on the Internet.
Download (0.008MB)
Added: 2007-04-06 License: Artistic License Price:
931 downloads
LDAP Mailing Lists Access Policy Daemon 0.2
LDAP Mailing Lists Access Policy Daemon (MLAPD) is a mailing list manager that uses LDAP to control list access. more>>
LDAP Mailing Lists Access Policy Daemon (MLAPD) is a mailing list manager that uses LDAP (instead of BDB or GDBM) to control list access. Its designed to work in conjunction with Postfix as an access policy delegation daemon. It manages electronic mail discussion and e-newsletter lists. Its goal is to store/read list data on/from LDAP.
It works as a Postfix access policy delegation agent, so it can be installed one time and used by multiple Postfix instances, or installed multiple times and not suffer database access concurrency issues (because it uses LDAP).
Enhancements:
- This can be considered the first stable and usable release.
<<lessIt works as a Postfix access policy delegation agent, so it can be installed one time and used by multiple Postfix instances, or installed multiple times and not suffer database access concurrency issues (because it uses LDAP).
Enhancements:
- This can be considered the first stable and usable release.
Download (0.040MB)
Added: 2007-03-24 License: GPL (GNU General Public License) Price:
944 downloads
Jamendo Lyrics 1.0.1
Jamendo Lyrics is a lyrics script for Amarok audio player accessing the lyrics database for Jamendo.com music. more>>
Jamendo Lyrics is a lyrics script for Amarok audio player accessing the lyrics database for Jamendo.com music.
<<less Download (0.008MB)
Added: 2007-06-13 License: GPL (GNU General Public License) Price:
869 downloads
Jackcess 1.1.9
Jackess is a pure Java library for reading and writing MS Access databases. more>>
Jackcess ia a pure Java library for reading from and writing to MS Access databases. Jackcess is not an application.
There is no GUI. Its a library, intended for other developers to use to build Java applications. Jackcess is licensed under the GNU Lesser General Public License.
Enhancements:
- Support for writing large table definitions was added.
- Handling of usage maps for large tables was fixed.
- Some edge cases for reading numeric columns were fixed.
<<lessThere is no GUI. Its a library, intended for other developers to use to build Java applications. Jackcess is licensed under the GNU Lesser General Public License.
Enhancements:
- Support for writing large table definitions was added.
- Handling of usage maps for large tables was fixed.
- Some edge cases for reading numeric columns were fixed.
Download (0.10MB)
Added: 2007-07-13 License: LGPL (GNU Lesser General Public License) Price:
833 downloads
migratedata 0.1
migratedata project allows you to write a simple XML file to define how to copy data from one database to another. more>>
migratedata project allows you to write a simple XML file to define how to copy data from one database to another, and perform very simple transformations on the way.
Currently, it is immediately able to help you migrate a PostNuke web site to a WordPress one, but to perform any other transformations you will need to create your own XML spec file (which is reasonably simple).
Migrating from PostNuke to WordPress
Download the migratedata tarball from the Download page, and unzip it somewhere.
Copy the file database_details_sample.xml and name it database_details.xml.
Edit the database_details.xml file to contain the hosts, usernames, passwords and database names of your databases.
If you have remote access to the MySQL databases for both your source and your target databases, the process is relatively simple. Open a terminal and cd into the directory containing migratedata.py, and run this command:
./migratedata.py database_details.xml postnuke0.75_to_wordpress2.2.xml
If you dont have remote access to the target database, run this command instead:
./migratedata.py --dump-insert database_details.xml postnuke0.75_to_wordpress2.2.xml > insert.sql
and execute the insert.sql script on the database server of your target database (probably through your hosting providers web interface).
If you cant run queries remotely against your source database either, do this:
./migratedata.py --dump-select database_details.xml postnuke0.75_to_wordpress2.2.xml > select.sql
This will create the file select.sql which you need to run on your source database (probably through your hosting providers web interface). The output of running this query will be some more SQL, which you will need to copy and run on your target database, again probably through your new hosting providers web interface.
Enhancements:
- PostNuke to WordPress migration support was implemented.
<<lessCurrently, it is immediately able to help you migrate a PostNuke web site to a WordPress one, but to perform any other transformations you will need to create your own XML spec file (which is reasonably simple).
Migrating from PostNuke to WordPress
Download the migratedata tarball from the Download page, and unzip it somewhere.
Copy the file database_details_sample.xml and name it database_details.xml.
Edit the database_details.xml file to contain the hosts, usernames, passwords and database names of your databases.
If you have remote access to the MySQL databases for both your source and your target databases, the process is relatively simple. Open a terminal and cd into the directory containing migratedata.py, and run this command:
./migratedata.py database_details.xml postnuke0.75_to_wordpress2.2.xml
If you dont have remote access to the target database, run this command instead:
./migratedata.py --dump-insert database_details.xml postnuke0.75_to_wordpress2.2.xml > insert.sql
and execute the insert.sql script on the database server of your target database (probably through your hosting providers web interface).
If you cant run queries remotely against your source database either, do this:
./migratedata.py --dump-select database_details.xml postnuke0.75_to_wordpress2.2.xml > select.sql
This will create the file select.sql which you need to run on your source database (probably through your hosting providers web interface). The output of running this query will be some more SQL, which you will need to copy and run on your target database, again probably through your new hosting providers web interface.
Enhancements:
- PostNuke to WordPress migration support was implemented.
Download (0.025MB)
Added: 2007-05-25 License: GPL (GNU General Public License) Price:
883 downloads
Tie::FormA 0.02
Tie::FormA is a Perl module that can access a machine readable database file that minics a hardcopy form. more>>
Tie::FormA is a Perl module that can access a machine readable database file that minics a hardcopy form.
SYNOPSIS
require Tie::FormA;
#####
# Using support methods and file handle with
# the file subroutines such as open(), readline()
# print(), close()
#
tie *FORM_FILEHANDLE, Tie::FormA, @options
$form = tied *FORM_FILEHANDLE;
#####
# Using support methods only, no file subroutines
#
$form = Tie::Form->new(@options);
$encoded_fields = $form->decode_record($record);
@fields = $form->decode_field($encoded_fields);
$encoded_fields = $form->encode_field (@fields);
$record = $form->encode_record($encoded_fields);
$record = $form->get_record();
####
# Subroutine interface
#
$encoded_fields = decode_record($record);
@fields = decode_field($encoded_fields);
$encoded_fields = encode_field (@fields);
$record = encode_record($encoded_fields);
If a subroutine or method will process a list of options, @options, that subroutine will also process an array reference, @options, [@options], or hash reference, %options, {@options}.
The Tie::FormA module provides a text database file suitable for local data such as private mailing lists. The Tie::FormA cannot provide a data warehouse shared by mulitple users.
<<lessSYNOPSIS
require Tie::FormA;
#####
# Using support methods and file handle with
# the file subroutines such as open(), readline()
# print(), close()
#
tie *FORM_FILEHANDLE, Tie::FormA, @options
$form = tied *FORM_FILEHANDLE;
#####
# Using support methods only, no file subroutines
#
$form = Tie::Form->new(@options);
$encoded_fields = $form->decode_record($record);
@fields = $form->decode_field($encoded_fields);
$encoded_fields = $form->encode_field (@fields);
$record = $form->encode_record($encoded_fields);
$record = $form->get_record();
####
# Subroutine interface
#
$encoded_fields = decode_record($record);
@fields = decode_field($encoded_fields);
$encoded_fields = encode_field (@fields);
$record = encode_record($encoded_fields);
If a subroutine or method will process a list of options, @options, that subroutine will also process an array reference, @options, [@options], or hash reference, %options, {@options}.
The Tie::FormA module provides a text database file suitable for local data such as private mailing lists. The Tie::FormA cannot provide a data warehouse shared by mulitple users.
Download (0.098MB)
Added: 2007-01-11 License: Perl Artistic License Price:
1016 downloads
Gif Assembler beta .96
Gif Assembler is a Web-based frontend for Gifsicle which allows users to create GIF animations from existing GIF images. more>>
Gif Assembler is a Web-based frontend for Gifsicle which allows users to create GIF animations from existing GIF images.
With Gif Assembler you can upload up to 99 GIF images as the frames for the animation.
Enhancements:
- Changes some syntax for better path detection, changes default optimisation, and adds an ImageMagick option.
- Minor bugfixes.
<<lessWith Gif Assembler you can upload up to 99 GIF images as the frames for the animation.
Enhancements:
- Changes some syntax for better path detection, changes default optimisation, and adds an ImageMagick option.
- Minor bugfixes.
Download (0.004MB)
Added: 2005-11-29 License: Other/Proprietary License with Source Price:
1439 downloads
MySpace Data Mining Tools 1.1
MySpace Data Mining Tools are a set of Java classes designed to mine information from MySpace profile and blog pages. more>>
MySpace Data Mining Tools are a set of Java classes designed to mine information from MySpace profile and blog pages using a multi-threaded Web page access method.
Enhancements:
- Direct database connectivity via JDBC was implemented for data storage.
- A basic user profile class was created to handle both user data compression and database access.
- Minor bugs were fixed for some of the raw data accessing routines.
<<lessEnhancements:
- Direct database connectivity via JDBC was implemented for data storage.
- A basic user profile class was created to handle both user data compression and database access.
- Minor bugs were fixed for some of the raw data accessing routines.
Download (0.035MB)
Added: 2006-07-30 License: GPL (GNU General Public License) Price:
1191 downloads
WWW::Myspace::Data 0.13
WWW::Myspace::Data is a WWW::Myspace database interaction. more>>
WWW::Myspace::Data is a WWW::Myspace database interaction.
SYNOPSIS
This module is the database interface for the WWW::Myspace modules. It imports methods into the callers namespace which allow the caller to bypass the loader object by calling the methods directly. This module is intended to be used as a back end for the Myspace modules, but it can also be called directly from a script if you need direct database access.
my %db = (
dsn => dbi:mysql:database_name,
user => username,
password => password,
);
# create a new object
my $data = WWW::Myspace::Data->new( $myspace, { db => %db } );
# set up a database connection
my $loader = $data->loader();
# initialize the database with Myspace login info
my $account_id = $data->set_account( $username, $password );
# now do something useful...
my $update = $data->update_friend( $friend_id );
<<lessSYNOPSIS
This module is the database interface for the WWW::Myspace modules. It imports methods into the callers namespace which allow the caller to bypass the loader object by calling the methods directly. This module is intended to be used as a back end for the Myspace modules, but it can also be called directly from a script if you need direct database access.
my %db = (
dsn => dbi:mysql:database_name,
user => username,
password => password,
);
# create a new object
my $data = WWW::Myspace::Data->new( $myspace, { db => %db } );
# set up a database connection
my $loader = $data->loader();
# initialize the database with Myspace login info
my $account_id = $data->set_account( $username, $password );
# now do something useful...
my $update = $data->update_friend( $friend_id );
Download (0.016MB)
Added: 2007-07-26 License: Perl Artistic License Price:
824 downloads
TracerouteWrapperServlet 0.5.2
TracerouteWrapperServlet provides a Web frontend to a command-line tool like traceroute. more>>
TracerouteWrapperServlet provides a Web frontend to a command-line tool like traceroute.
TracerouteWrapperServlet is a Java Servlet which calls a command-line tool like traceroute, nslookup, or ping and displays the tools output within a dynamically reloadable HTML template.
You are currently limited to using one commandline tool per instance of TracerouteWrapperServlet.
quick installation notes:
- Install JRE 1.3.1 or Java 2 SDK 1.3.1 or higher.
- Install a servlet runner like Apache Tomcat.
- Copy the files included in this distribution to a location of your choice. Use the same directory structure as in the zipped file unless it seems unsuitable for you.
- Edit the properties file yourInstallDir/TracerouteWrapperServlet/WEB-INF/classes/inifile.properties to fit your environment. You need to give the path to the traceroute executable on your server. This executable is part of your OS, its NOT included in this distribution.
- Configure your ServletRunner to have a context for TracerouteWrapperServlet
- Edit the HTML template file yourInstallDirTracerouteWrapperServletindex.html. You need to replace the location in the tag with the URL pointing to your installation of TracerouteWrapperServlet.
Enhancements:
- The ability to dynamically reload properties file was added.
- Minor bug fixes were made.
<<lessTracerouteWrapperServlet is a Java Servlet which calls a command-line tool like traceroute, nslookup, or ping and displays the tools output within a dynamically reloadable HTML template.
You are currently limited to using one commandline tool per instance of TracerouteWrapperServlet.
quick installation notes:
- Install JRE 1.3.1 or Java 2 SDK 1.3.1 or higher.
- Install a servlet runner like Apache Tomcat.
- Copy the files included in this distribution to a location of your choice. Use the same directory structure as in the zipped file unless it seems unsuitable for you.
- Edit the properties file yourInstallDir/TracerouteWrapperServlet/WEB-INF/classes/inifile.properties to fit your environment. You need to give the path to the traceroute executable on your server. This executable is part of your OS, its NOT included in this distribution.
- Configure your ServletRunner to have a context for TracerouteWrapperServlet
- Edit the HTML template file yourInstallDirTracerouteWrapperServletindex.html. You need to replace the location in the tag with the URL pointing to your installation of TracerouteWrapperServlet.
Enhancements:
- The ability to dynamically reload properties file was added.
- Minor bug fixes were made.
Download (0.022MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
933 downloads
MDB Tools 0.6pre1
MDB Tools is a set of tools for reading Microsoft Access MDB files. more>>
The MDB Tools project is a effort to document the MDB file format used in Microsofts Access database package, and to provide a set of tools and applications to make that data available on other platforms.
Specifically, MDB Tools includes programs to export schema and data to other databases such as MySQL, Oracle, Sybase, PostgreSQL, and others.
Also, included is a SQL engine for performing simple SQL queries. The 0.5 release includes an updated GUI interface (screenshot is available here). A sparse but functional ODBC driver is included as well.
MDB Tools currently has read-only support for Access 97 (Jet 3) and Access 2000/2002 (Jet 4) formats. Access 2000 support is a recent addition and may not be as complete as Jet 3 support.
Write support is currently being worked on and the first cut is expected to be included in the 0.6 release.
<<lessSpecifically, MDB Tools includes programs to export schema and data to other databases such as MySQL, Oracle, Sybase, PostgreSQL, and others.
Also, included is a SQL engine for performing simple SQL queries. The 0.5 release includes an updated GUI interface (screenshot is available here). A sparse but functional ODBC driver is included as well.
MDB Tools currently has read-only support for Access 97 (Jet 3) and Access 2000/2002 (Jet 4) formats. Access 2000 support is a recent addition and may not be as complete as Jet 3 support.
Write support is currently being worked on and the first cut is expected to be included in the 0.6 release.
Download (0.60MB)
Added: 2005-04-21 License: LGPL (GNU Lesser General Public License) Price:
1695 downloads
Webavis 0.3
WebAvis is a Web frontend to amavisd-new written in PHP. more>>
WebAvis is a Web frontend to amavisd-new written in PHP.
It allows owners of a mail account to manage their amavisd-new parameters, like spam scores, white/black lists and filter behavior.
<<lessIt allows owners of a mail account to manage their amavisd-new parameters, like spam scores, white/black lists and filter behavior.
Download (0.12MB)
Added: 2005-10-05 License: GPL (GNU General Public License) Price:
1479 downloads
WebDirectory 2.0.1
WebDirectory provides a Web-based filesystem frontend. more>>
WebDirectory provides a Web-based filesystem frontend.
WebDirectory provides a Web-based frontend to an ordinary directory structure of your filesystem. There is no need to import your current data, and no problem exporting your data for backup. It is kept very simple to provide maximum efficiency.
You can upload, download and delete files; create and delete directories; configure multiple instances; and have optional user authentication.
Main features:
- Upload files
- Download files
- Delete files
- Create directories
- Delete directories
- Configure multiple instances
- Optional user authentication
<<lessWebDirectory provides a Web-based frontend to an ordinary directory structure of your filesystem. There is no need to import your current data, and no problem exporting your data for backup. It is kept very simple to provide maximum efficiency.
You can upload, download and delete files; create and delete directories; configure multiple instances; and have optional user authentication.
Main features:
- Upload files
- Download files
- Delete files
- Create directories
- Delete directories
- Configure multiple instances
- Optional user authentication
Download (0.014MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
987 downloads
Rauls classes for PHP 0.6.3
Rauls classes for PHP is an OOP database abstraction layer for PHP 5.1 or greater. more>>
Rauls classes for PHP is an OOP database abstraction layer for PHP 5.1 or greater. Rauls classes for PHP provides abstract classes to access database servers and traverse result sets.
There are several implementation classes to access different types of databases: SQLite, MySQL, PostgreSQL, and MSSQL.
The classes provide functions to establish connections, execute queries, traverse result sets with pagination support, and retrieve the list of databases, tables and fields. Any possible error is signaled by throwing exceptions with specific message and error code.
Enhancements:
- A quickref.txt file was added to the project.
- A totalRows get property was included for SQL result objects.
- A third optional parameter was added to the printPageSelect method in order to return the page < select > code as an string instead of printing it.
<<lessThere are several implementation classes to access different types of databases: SQLite, MySQL, PostgreSQL, and MSSQL.
The classes provide functions to establish connections, execute queries, traverse result sets with pagination support, and retrieve the list of databases, tables and fields. Any possible error is signaled by throwing exceptions with specific message and error code.
Enhancements:
- A quickref.txt file was added to the project.
- A totalRows get property was included for SQL result objects.
- A third optional parameter was added to the printPageSelect method in order to return the page < select > code as an string instead of printing it.
Download (0.050MB)
Added: 2006-06-08 License: MIT/X Consortium License Price:
1235 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 web frontend for access database 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