Main > Free Download Search >

Free database management software for linux

database management

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4162
Essential Management

Essential Management


Essential Management provides a project management system for organizing and writing technical documents. more>>
Essential Management provides a project management system for organizing and writing technical documents.

Essential Management is a multi-user project management system for managing intricate and complex information. Its initial purpose was to allow software development teams to create, maintain, track, and store project requirements on a multi-project basis in a multi-user environment. It has now become more abstract in the type of data it can maintain, allowing the easy addition of new data models and other expansions. Information can be stored in any of several database management systems, and can take advantage of a networked DBMS.

The first and most important feature of the application is that data is stored in a central data repository managed by some database management server; initially PostgreSQL fills this role, but support for others are growing. The repository is fully searchable. An alternative data storage format exists in the form of a locally maintained XML file if the user wishes to use it.

One of the key features Essential Management was designed around is the ability to define and maintain relationships between requirements. Using the software requirement model as an example, our application allows users to define projects; each project is composed of zero or more root requirements, which are typically business level requirements. Each business requirement has zero or more sub-requirements, which either refine the parent business requirement or dive into the functional requirements which allow the business requirement to be achieved. This tree continues to branch and grow deeper until the most basic level that the user wishes to define is reached.

In addition the relationship between parent and child requirements, relationships can be defined between requirements not in the same branch. These relationships may have any meaning the user wishes to define and can be unidirectional or bi-directional.

Essential Management implements the concept of user level permissions, which provides a small measure of security for the projects and their requirements. Additionally, creation of and changes to requirements can be traced to the user who initiated the action.

Finally, the application provides a means to track changes made to requirements during their lifetime so it is possible to determine when a change was made, what information was changed and who edited the requirement.
<<less
Download (MB)
Added: 2007-02-09 License: BSD License Price:
993 downloads
PHP time management 1.07b

PHP time management 1.07b


PHP time management is a Web-based time management application. more>>
PHP time management project is a Web-based time management application. You can enter scheduled items, copy items, and view them on a calendar.

A few minor items in the login page for the system were fixed.

<<less
Download (0.018MB)
Added: 2006-09-18 License: GPL (GNU General Public License) Price:
1143 downloads
Remote Gnu Database Manager 2.1.41

Remote Gnu Database Manager 2.1.41


Remote Gnu Database Manager is a network server daemon and client library for the standard GNU GDBM(3) database management... more>>
Remote Gnu Database Manager is a network server daemon and client library for the standard GNU GDBM(3) database management interface, which itself incorporates Berkeley DBM.
To setup after installation (these notes are for 2.1.33 or later), let make install do what it can, and then:
1. create a user, gdbm, on the server machine with home in /var/lib/gdbm. Make install tries to do that for you using adduser so you likely just have to check /etc/passwd and /etc/group.
2. Create /var/lib/gdbm and change owner to gdbm. Again, make install has a stab at this for you and likely you will need to do nothing yourself.
3. Also create /var/lib/gdbm/data, /var/lib/gdbm/ctrl and change owner to gdbm. Make install should also have made those.
4. Copy those parts of /etc/passwd belonging to users who should be able to access the daemon to /var/lib/gdbm/ctrl/passwd. This is entirely in your hands.
5. Likewise for /etc/group to /var/lib/gdbm/ctrl/group.
6. Start the daemon as gdbm with some command like "sudo -u gdbm /usr/sbin/gdbmd", or "su -c /usr/sbin/gdbmd gdbm". The install will not start it for you, nor does it presently install a system startup script for it in /etc/init.d or elsewhere.
7. Write an application on the client that uses the standard gdbm_* calls in the GNU GDBM(3) manpage, but replace the gdbm_ calls with rgdbm_ calls. The install routine does do that ... or perhaps I lie.
Thats about it! Apart from setting up for SSL if you want to use that and Ill give some further indications as to how to do that below.
One has to add two extra calls in the application over and above what was there already for gdbm(3) usage; one to rgdbm_connect() and another to rgdbm_disconnect(), respectively to begin and end the session, as detailed in the rgdbm(3) man page.
Example:
Sample code ... start by making the connection:
rgdbm_connect(host, dir, user, 0);
Then open the desired database in that directory:
GDBM_FILE dbf = rgdbm_open(dbname, 1024, GDBM_WRCREAT, 0640, NULL);
Now the rgdbm(3) ops are available.
fprintf(stdout, "Database contains ...n");
datum key = rgdbm_firstkey(dbf);
if (key.dptr) {
datum content = rgdbm_fetch(dbf, key);
fprintf(stdout, "key %s content %sn", key.dptr, content.dptr);
while (key = rgdbm_nextkey(dbf, key), key.dptr) {
fprintf(stdout, "key %s content %sn", key.dptr, content.dptr);
}
}
Terminate by closing:
rgdbm_close(dbf);
and disconnect from the session:
rgdbm_disconnect();
Enhancements:
- Added (generated) debian directory to package.
<<less
Download (0.076MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
853 downloads
DC Maintenance Management System 1.1.2

DC Maintenance Management System 1.1.2


DC Maintenence Management System is a Web-based application that records and analyzes customer complaints. more>>
DC Maintenence Management System is a Web-based application. DC Maintenance Management System records and analyzes customer complaints and repairs in water supply networks.
Enhancements:
- This is a maintenance and bugfix release that does not add any new functionality.
<<less
Download (2.0MB)
Added: 2006-07-03 License: GPL (GNU General Public License) Price:
706 downloads
Resource Management Game 0.12

Resource Management Game 0.12


Resource Management Game project is a Web-based resource management game. more>>
Resource Management Game project is a Web-based resource management game.

Resource Management Game is a PHP framework for easily creating resource management and strategy games.

Two playable games are included.

The system uses sessions to store data and should work out of the box with little or no configuration.

<<less
Download (0.081MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1022 downloads
Oxylus Service Management 0.2

Oxylus Service Management 0.2


Service Management is a Web application that allows users to manage service. more>>
Service Management is a Web application that allows users to manage service and repair, including work orders, service scheduling, service calls, preventative maintenance, and customer contact information.
Enhancements:
- Some bugfixes were made for PHP5.
- A new interface was implemented.
<<less
Download (0.20MB)
Added: 2005-10-31 License: GPL (GNU General Public License) Price:
1456 downloads
Database Functions 1.0

Database Functions 1.0


Database Functions is a PHP class that can be used to build and execute MySQL database queries. more>>
Database Functions is a PHP class that can be used to build and execute MySQL database queries.

It can build SELECT, INSERT, UPDATE and DELETE queries from lists of parameters and values.

The class can also execute the generated queries and retrieve the SELECT query results into associative arrays.

<<less
Download (MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
830 downloads
Real Estate Management Software 1.27a

Real Estate Management Software 1.27a


Real Estate Management Software is a real estate management solution for real estate professionals. more>>
Real Estate Management Software is the perfect real estate management solution for real estate professionals.
Get all your listings on the web with free, easy to use web-based real estate management software.
Create your areas, school districts and property types and even upload images. Full featured searching available. 100% free license. Uses PHP and MySQL.
Enhancements:
- This real estate management release has some updates to the system documentation.
<<less
Download (0.19MB)
Added: 2006-02-03 License: Free To Use But Restricted Price:
1371 downloads
LAN Management System 1.9.1

LAN Management System 1.9.1


LMS is the integrated system of networks management designed for various size internet providers (ISP). more>>
LMS (LAN Management System) is the integrated system of networks management designed for various size internet providers (ISP).

That software writed in PHP, Perl and C, works with variuos database systems.

<<less
Download (1.93MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1230 downloads
AntiCMS Content Management System 0.2.1

AntiCMS Content Management System 0.2.1


AntiCMS is a minimalist content management system for small and simple websites. more>>
AntiCMS is a minimalist content management system for small and simple websites. The main purpose of this system is to separate content, structure and layout.
Layout is defined using templates; content and structure are stored in XML file - database is not required. System is written in Python and released under the GPL.
Its still in early stage of development, so errors and unpredicted behaviour may occour. Currently a content editor is being developed, which will run on users computer and allow easy managent of content and structure of websites.
Enhancements:
- This release adds site configuration (it is now possible to change encodings, paths, and some other properties) and a new variable in the template engine.
<<less
Download (0.034MB)
Added: 2005-11-07 License: GPL (GNU General Public License) Price:
1446 downloads
Community Content Management 1.0

Community Content Management 1.0


Community Content Management project consists of a light-weight CMS, designed for communities. more>>
Community Content Management project consists of a light-weight CMS, designed for communities.
Community Content Management is a light-weight CMS, which is designed for small communities, such as churches, schools, and neighborhood watch groups.
It allows someone with relatively little knowledge of the Internet to publish news stories and events. It sets archive/publishing dates, allowing groups to write press releases/articles about events before they happen.
Its output conforms to XHTML 1.0 and uses CSS 2, and its configuration comprises one file, which sets the site title, database, host, and meta tags.
Enhancements:
- Login - code changed so correct variables are passed to login script :)
- Search - Search Engine Added
- Articles - new lines (n) are replaced with "
" instead of " "
<<less
Download (MB)
Added: 2007-01-22 License: GPL (GNU General Public License) Price:
1009 downloads
Xitnalta Content Management System 0.5.80

Xitnalta Content Management System 0.5.80


Xitnalta Content Management Systems goal is to provide yet another way to access and manage data both locally and over the net. more>>
Xitnalta Content Management System (xcms) provides a virtual filesystem library to deal with content from different sources (a real filesystem, a database, etc.) and in different formats.

Xitnalta Content Management Systems goal is to provide yet another way to access and manage data both locally and over the Internet.

<<less
Download (0.21MB)
Added: 2006-08-04 License: GPL (GNU General Public License) Price:
1177 downloads
PHP Sessions Management Class 1.0.3

PHP Sessions Management Class 1.0.3


PHP Sessions Management Class is a php class to handle sessions by using a mySQL database. more>>
PHP Sessions Management Class is a php class to handle sessions by using a mySQL database for session related data storage providing better security then the default session handler used by PHP.
If you are not familiar with what php sessions are and what are they good for, check out the dedicated chapter in the php manual
If you are familiar with php sessions and you want to use this php class in your projects then remember that to prevent session hijacking, you must not forget to use the regenerate_id() method whenever you do a privilege change in your application
Before usage, make sure you use the session_data.sql file (which is a sql dump file generated with phpMyAdmin) from the install_sql folder to set up the table used by the class
You dont need to modify anything in your previous applications: after instantiating the php class, just use sessions as you would normally.
Note:
The class assumes that there is an active connection to a mySQL database and it does not attempt to create one. This is due to the fact that, usually, there is a config file that holds the database connection related information and another class, or function that handles database connection. If this is not how you do it, you can easily adapt the code by putting the database connection related code in the "open" method of the class.
Enhancements:
- The get_users_online() method is now more accurate as it now runs the garbage collector before getting the number of online users.
- The structure of the MySQL table used by the class was tweaked in so that the "http_user_agent" field was changed from VARCHAR(255) to TEXT to accomodate user agent strings that are longer than 255 characters.
- The "session_data" field was also changed from TEXT to BLOB to help users who store a large amount of data in sessions.
<<less
Download (0.020MB)
Added: 2006-12-16 License: Free for non-commercial use Price:
1044 downloads
Nelisys Management System 0.2.1

Nelisys Management System 0.2.1


Nelisys Management System can manage and monitor system and network including Router, Switch. more>>
Nelisys project is Open Source Web-based Management System, to manage and monitor system and network including Router, Switch, Wi-Fi Access Point, Server, Networking services, etc.

There are performance and fault management function.

<<less
Download (0.045MB)
Added: 2006-08-25 License: GPL (GNU General Public License) Price:
1158 downloads
Open Blue Lab 2.0.1 (Groupware/Project Management)

Open Blue Lab 2.0.1 (Groupware/Project Management)


Open Blue Lab is a rapid application development framework for building Web 2.0 portal applications. more>> <<less
Download (1.5MB)
Added: 2007-03-30 License: GPL (GNU General Public License) Price:
940 downloads
 
Other version of Open Blue Lab
Open Blue Lab 1.4.4 (WareHouse Management System)Open Blue Lab Project - Open Blue Lab 1.4.4 (WareHouse Management System)Open Blue Lab 1.4.4 (WareHouse Management
License:GPL (GNU General Public License)
Download (1.3MB)
691 downloads
Added: 2006-08-14
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5