0% found this document useful (0 votes)
34 views1 page

Travel Agency Management Software: Installation Note - How To Install and Run The Software

1) The document provides instructions for installing and running a travel agency management software program developed in Java NetBeans and MySQL. 2) It describes installing the MySQL database by resetting the root password, copying an SQL script to create tables and sample data, and running the script to set up the database. 3) Instructions are given for opening the project in NetBeans and running the program.

Uploaded by

SuperdudeGaurav
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views1 page

Travel Agency Management Software: Installation Note - How To Install and Run The Software

1) The document provides instructions for installing and running a travel agency management software program developed in Java NetBeans and MySQL. 2) It describes installing the MySQL database by resetting the root password, copying an SQL script to create tables and sample data, and running the script to set up the database. 3) Instructions are given for opening the project in NetBeans and running the program.

Uploaded by

SuperdudeGaurav
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

Travel agency Management Software

(Designed in Java NetBeans and MySQL)

Installation Note - How to install and run the Software


Prerequisite
NetBeans Ver 6.9 and MySQL 5.1 or higher version must be installed on the PC to run the
program.

Database Installation
The software project is distributed with a backup copy of a Database named travelagencywith
required tables. Some dummy records are also present in the tables for testing purposes, which
can be deleted before inserting real data. A sql script arjun.sql is provided for this purpose.
To install database from arjun.sql, simply follow the following procedure.
Step 1:
Reset the MySql password and make new root password (raj), if any other password is given by
launching MySQL Server Instance config wizard (StartProgramsMySQLMySQL
server instance Config wizard ).
Give current password and new password as raj for root.
Step 2:
Copy the lib.sql file in C:\Program files\Mysql\MySql server 5.1\Bin folder.
Step 3:
Load MySQL and create database named Library.
Mysql> create database travelagency;
Step 4:
Go to the DOS prompt (StartRun type cmd and press enter) and go to the following folder
using CD command of DOS.
C:\.....> CD C:\Program files\Mysql\MySql server 5.1\Bin
Step 5:
Type the following command on above DOS prompt.
C:\.\bin> mysql -u root -parjun Library < arjun.sql
This will create a library database with tables and records at target machine.
Note:
1. Dont give space between p and your password.
2. The lib.sql file must be present in Bin folder.

How to run the Program


To run the software open NetBeans and open the project (File Open) and browse the
travelagency project from the location where the Library project folder exist. After loading the
project choose Run command to run the program.

You might also like