1. ABSTRACT
Traveling is a large growing business in India and other countries. Bus reservation system deals with maintenance of records of details of each passenger who had reserved a seat for a journey. It also includes maintenance of information like schedule and details of each bus.
We observed the working of the Bus reservation system and after going through it, we get to know that there are many operations, which they have to do manually. It takes a lot of time and causes many errors. Due to this, sometimes a lot of problems occur and they were facing many disputes with customers. To solve the above problem, and further maintaining records of items, seat availability for customers, price of per seat, bill generation and other things, we are offering this proposal of reservation system.
By using this software, we can reserve tickets from any part of the world, through telephone lines, via internet. This project provides and checks all sorts of constraints so that user does give only useful data and thus validation is done in an effective way.
————————————————————————————————————
2. INTRODUCTION
Our project is to computerize traveling company to manage data, so that all the transactions become fast and there should not be any error in transaction like calculation mistake, bill generation and other things. It replaces all the paper work. It keeps records of all bills also, giving to ensure 100% successful implementation of the computerized Bus reservation system.
Our reservation system has three modules. First module helps the customer to enquire the availability of seats in a particular bus at particular date. Second module helps him to reserve a ticket. Using third module he can cancel a reserved ticket.
————————————————————————————————————
3. SYSTEM STUDY
System study aims at establishing requests for the system to be acquired, development and installed. It involves studying and analyzing the ways of an organization currently processing the data to produce information. Analyzing the problem thoroughly forms the vital part of the system study. In system analysis, prevailing situation of problem is carefully examined by breaking them into sub problems. Problematic areas are identified and information is collected. Data gathering is essential to any analysis of requests. It is necessary that this analysis familiarizes the designer with objectives, activities and the function of the organization in which the system is to be implemented.
3.1. Study of existing system
- Existing system is totally on book and thus a great amount of manual work has to be done. The amount of manual work increases exponentially with increase in bus services.
- Needs a lot of working staff and extra attention on all the records.
- In existing system, there are various problems like keeping records of items, seats available, prices of per/seat and fixing bill generation on each bill.
- Finding out details regarding any information is very difficult, as the user has to go through all the books manually.
- Major problem was the lack of security.
3.2. Proposed system
The system is very simple in design and to implement. The system requires very low system resources and the system will work in almost all configurations. It has got following features
- Ensure data accuracy.
- Records are efficiently maintained by DBMS.
- DBMS also provides security for the information.
- Any person across the world, having internet can access this service.
- Availability of seats can be enquired very easily.
- Passengers can also cancel their tickets easily.
- Minimum time needed for the various processing.
- Better Service.
- Minimum time required.
- This would help the corporation prepare and organize its schedules more efficiently on the basis of traffic demand.
3.3. Introduction about the front end(.NET)
This proposed software is going to be development using the latest technology from Microsoft called Microsoft .NET and it is the software that connects information, people, systems, and devices. It spans clients, servers, and developer tools, consists of:
- The .NET Framework 3.0 used for building and running all kinds of software, including Web-based applications, smart client applications, Mobile applications etc.
- Development tools, such as Microsoft Visual Studio .NET 2010, which provides an integrated development environment (IDE) for maximizing development productivity with the .NET Framework.
3.4. Introduction about the back end(SQL SERVER 2008)
Microsoft SQL Server 2008 is comprehensive, integrated data management and analysis software that enables organizations to reliably manage mission-critical information and confidently run today’s increasingly complex business applications. SQL Server 2008 allows companies to gain greater insight from their business information and achieve faster results for a competitive advantage.
- SQL Server is the fastest growing Database and Business Intelligence vendor.
- SQL Server is more secure than Oracle. Since July 2003 more than 100 critical Oracle database security vulnerabilities have been identified, compared to ZERO for SQL Server for that period.
————————————————————————————————————
4. SYSTEM SPECIFICATION
4.1. Hardware Requirements:
- PC with intel core processor(or more config).
- 512 MB RAM or above.
- 40 GB Hard Disk or above.
4.2. Software Requirements:
- Operating system : Windows XP (or latest).
- Front end : Visual C sharp
- Platform : ASP.NET (.NET web platform 3.0 or above)
- Integrated development environment(IDE): Visual Studio 10.0
- Back end : SQL SERVER 2008
————————————————————————————————————
5. DATABASE DESIGN
5.1. Conceptual design
1.) Requirement Analysis:
What data is needed?
List of Entities:
- Bus
- Passenger
- Route
- Reserves
List of attributes:
Bus:
- Bus id
- Type
- AC (or) Non-AC
- Sleeper (or) Not
- Maximum seats
Route information:
- Route id
- To location
- From location
- Depart date
- Depart time
- Fare
Reserves information:
- Ticket number
- Passenger id
- Route id
Passenger information:
- Passenger id
- Name
- Mobile number
List of Relations:
- Reserves
- Has
ER-MODEL:
1. PASSENGER: Keeps record of passengers.
| S.no | Field name | Data type | Description | Constraints |
| 1 | PID | Integer | Passenger identity number | Primary key |
| 2 | Name | varchar(20) | Name of the passenger | |
| 3 | Mobile | bigint | Mobile number of the passenger | |
| 4 | varchar(30) | Email id of the passenger |
Schema definition:
CREATE TABLE passenger(PID integer primary key,name varchar(20) ,mobile bigint,email varchar(30));
2. ROUTE: Keeps record of schedules.
| S.no | Field name | Data type | Description | Constraints |
| 1 | RID | Integer | Route identity number | Primary key |
| 2 | BID | Integer | Bus identity number | Foreign key |
| 2 | To_location | varchar(20) | Starting point | |
| 3 | From_location | varchar(20) | Destination point | |
| 4 | Fare | real | Fare for journey | |
| 5 | Depart_date | date | Departure date | |
| 6 | Depart_time | time(7) | Departure time |
Schema definition:
CREATE TABLE passenger(RID integer primary key,BID integer,from_location varchar(20) ,to_location varchar(20),Fare real,depart_date date,depart_time time(7),foreign key (bid) references BUS(bid));
3. RESERVES: Reservation table.
| S.no | Field name | Data type | Description | Constraints |
| 1 | Ticket_no | Integer | Ticket number | Primary key |
| 2 | RID | Integer | Route identify number | Foreign key |
| 3 | PID | Integer | Passenger identity number | Foreign key |
Schema definition:
CREATE TABLE passenger(Ticket_no integer primary key,RID integer,PID integer,foreign key (rid) references ROUTE(rid),foreign key (pid) references PASSENGER(pid));
4. BUS: Bus details.
| S.no | Field name | Data type | Description | Constraints |
| 1 | BID | Integer | Bus identity number | Primary key |
| 2 | Bname | varchar(20) | Bus name | |
| 2 | Max_seats | Integer | Seats in bus | |
| 3 | Type_ac | varchar(3) | Ac or not | |
| 4 | Type_sleeper | varchar(3) | Sleeper or not |
Schema definition:
CREATE TABLE passenger(BID integer primary key,Bname varchar(20) ,Max_seats Integer,Type_ac varchar(3),Type_sleeper varchar(3));
Hello,
Happy news to everyone, me going to make this project available open at : https://sites.google.com/a/shivajivarma.com/bus-reservation-system/
Project site is under construction … visit it after some time.
Shivaji varma….

PLEASE SEND BUS TICKET RESERVATION CODING
ya plzz give the source code of this project
pls send bus reservation coding
Hi! Would like you to send your project’s source code? Please…..I need it urgently
Can I please have the coding of this project ‘bus online reservation’ ?? I require it asap !! Could you mail me a coding of this ??? – and also software for the same.
my mail id: aisha.siddiqua77@gmail.com
nice, love this blog, how do I subscribe
Click on “subscribe RSS” at bottom left corner.
i am doing the same project.can u discuss the code here
hi did you get a system ?
can you please email me tpsporti at gmail.com
Very nice.it helps me to complete my database project.
Thank u for the comment.
shivaji……
shivaji bhai this is my mail address … i need your project ….. milan_hbk@ymail.com
i have used your design as an example in my text which will soon be uploaded on CBSE websitte. I ma acknowledging it as your work referred by me. in case you have any objections, do let me know.
PLEASE SEND CODING FOR THIS PROJECT
i should do the database project, but i did not get any ideas, may i get your coding for this project
sir,
please send me the source code of this project………
i am waiting for your reply….
thank u..
i need full coding for bus reservation system
hi sir,
i need full source code for online bus reservation system project.
im waiting for ur reply…
thanking u……
Hi Sir,
Now only am started the project,please give a idea to do the project sir
Hi Sir,
Am doing this project in java using jsp,please give a idea sir
could you please send the code?
Hello,i found your post via google search,im interesting in this system,can u send me in email the source code,thanks for this good job
sir i want to implement this project…can u send me the project details with coding
plz plz send the source code of this project
nr_gokul@yahoo.co.in
SEND ME CODING OF THIS PROJECT…..
hi it’s a good project & thanks for the project
can you help me i need the coding the project &
i hope the coding by vb in Asp.net
Hello Sir,i am in need of this project.Can u please provide the source code of it.It would be very kind of you.
i m creating a database management project in my college ,can u plz send me d code for reference my email id is kaslaymadhura@yahoo.co.in.
hi….can u pls send me d coding….as soon as u can..
hi…pls send me d coding @ ishikaaishu@gmail.com
soon….
tnx 4 sharing ur ideas…it is a great help in our thesis..
hi!! thnks for the info its a good project….
thanks this is really help me so much for my final project ;D
please give me code also……………
hi im daniel,can u plz send me the codes of your project?
This is exactly what I am looking for. We are now creating a bus ticketing system..Can I have your codes for me to have my reference ..Thanks!!..SO much like.:))
plz sir can u snd me the code of ur project
can u send me the code for reference?
Nice! it’s possible to check the coding too?
thanks
kindly help me out with the codes for the project!!!!!!!
do u have db projects front end as java not .net…
plelase send me sir
do u have db projects front end as java not .net…
plelase send me sir………..list of db projects u hav also mention
Passenger’s gender must be noted, One user can book more than one seat so it should be mentioned in database…… but overall it is nice try….
please upload the passport database as of bus reservation
Sir, I really like the project i am planning to work on bus ticket booking system project for my course.
Can i have the source code of the project.
Thank you
please can i have the code
can you send me the source code at roychavarcode@gmail.com
thanks
good data dictionary thanks
I am greatly appreciated with your work!!
I need some help for my semester project
Can You mail me the project source
MY email id is mailto: manash149@gmail.com
i need complete project … with coding … can u help me out …. my mail address is milan_hbk@ymail.com
Please send the code for this project
Please send the code for this project
mail Id : udaykumar.amiable@gmail.com
i need the source code for the project. could you mail me?
my mail id is ch.pravallika@gmail.com
i want code of this program plz send me my mail id udayreddy4b7@gmail.com
plz can you send me the code for my semester project
thnx
can u plz send me the code..for reference plz..needed badly
here’s my e-add ..realyn43@yahoo.com ..i’ll be waiting…thanks…
Thanks for nice document.
I want to show this project in MCA final year project training, Pls share this code on my email id: sbh.upd1@gmail.com
plz plz plz … i want the source code! i would really really appreciate it!
aaafaneh08@eng.just.edu.jo
can u pls send me the codings as soon as possible?
i need source code if possible waiting for ur replay
thanks in advance
please send source code Diploma last year
Email – sunilsingh2019@yahoo.com
sir,
please send me the source code of this project………
i am waiting for your reply….
thank u..
(plz help me…
frm: subashini
Sir, Please can you help with the complete project. Please I dont no how to start begging.
please can you send me the code at gugagodfrey@yahoo.com
sir, i am doing exactly same project under ur guidance, could u please send me the code for this project in a week please,sir very thankful to u.
sir .i m doing exactly same project under ur guidance could u send me code for this project in week very thankful to u.
i do the same project sir can i have your code this is my mail id ali98071@yahoo.com
please sir give me the coding for bus reversation system and design page of it
this is helpfull my project please send me source code
pls send the source code to this project if possible. vbv1988@gmail.com
i want more informetion about sorce code of manupulating processes like updata,delete etc can u pls send me that i needed pls
ur project is very nice….please send me the complete source code of this project…my mail id-
waiting for ur reply
plz can you send me the code for my semester project
thnx
plz can you send me the code for my semester project
thnx@raf_00@rocketmail.com
i cant see anything
kindly send me this code, nice work Am doing a project on the same. mailto: luckyule@gmail.com. Thanx
please send the source code of this to
hetaxiparekh@gmail.com
its a fantastic work ! i am really interested in seeing ur source code ! mail to ankitsinghvim@gmail.com…
Hi i want the source code for this project help me out yar my mail:sanchuramasamy@gmail.com
cool stuff,send me the code pliz for a kick start
Pls send me the coding
PLEASE SEND ME THE WHOLE DETAILS OF THIS PROJECT
THANKS IT IS A VERY GOOD PROJECT
hello…..
pls to request u sir……i need the coding for thz project for my references
unless send me the project source reference to my mail id
HI Sir can u pls give me the code for my study , im doing my final yr will be very helpful
plz send me the source code plz!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
plz!!!!!!!!!!!!!!!!!!!
send me the source code its important
send it to dheeraj2811@gmail.com
PLEASE SEND ME THE CODE OF THIS PROJECT PLEASE…
my id is ” alenmark32@yahoo.com ”
ITS A VERY GOOD PROJECT..
please halp me i want this code
hey… can any one forward me the complete project code..??
my id: singhvikram017@gmail.com
sir can u get online bus rservation code in front end java and backend oracle.pls sir send it to madhaviroopa@gmail.com.
Your software is not open in my computer please tell me how to open and execute your project please
..
tell me the details of this project ??
in which softwares i’ll install to opened this project???
can you send me the project files. AI think I can help you…
ya sure..
email id please????
here’s my emailid
manash149@gmail.com
hey msonowal i have mailed you this project now tell me please???
sir please send me the code.
@ gour.rahul22@gmail.com
sir can u please mail me your project on hussain_arthuna@yahoo.com
please
hello.can u send this coding. this report same with my project . Thank you for your regardless
sir please tell me how can i execute this project???
This project is not open and execute on my computer..
tell me in which software if i installed, so that this project can be opened..
help me please me final lab of this project is very near
i want bus ticket reservation project using “SQL server” not using “mySQL”
please any of you have this project making on that software please send me on this id
alenmark32@yahoo.com
thanx in advance
i really need this project
It uses “SQL server”… i just kept folder name wrong… sorry for that…
You need IIS server to host the project….
hai sir really dis is a very gud prjct sir so pls will u send me the coding details pls which is going to help me in the prjct sir pls….
please send me the source code at my email
psadangi@rediffmail.com
i am developing it in PHP and Mysql
pls send me the souce code my mail id is kumarpraveen.clear@gmail.com
hi sir,
i need full source code for online bus reservation system project.
im waiting for ur reply…deepupulikkal@gmail.com
thanking u……
hai sir really dis is a very gud prjct sir so pls will u send me the coding details pls which is going to help me in the prjct sir pls….
sir, please send me the complete coding of this project at my email address:
hhcis_311@hotmail.com
waiting for your immediate positive response.
thanks.
dear sir. thank u very much for the code. I want to know which part is front end and which part is back end. Also I want to know where to get the final display window.
please reply soon because I have to submit the project tomorrow.
thank u very much.
my email id is:
hhcis_311@hotmail.com
waiting for your response.
nice……………..abhi to ek hi bar use ki h achi lagi ….i hope i will frthr use it.thnx…..
hey sir…can you pls send me its coding…kindly help me..
my email ID buvnesh.pf@gmail.com
hello sir,
i am a computer science student from UP, currently pursuing my bachelors degree. I have to submit the reservation system project as my minor project. Will you share your source code with me? I will be highly obliged if you help me in this matter. I will work and try my best to make it more stunning & graphically sound. I will submit you my update after my project submission at college. If it is possible for you to share the source with me, please mail me at infork22@gmail.com
many thanks,
rutika sharma
hi sir can you please send the complete project
i am planing to do this project
ranga4892@gmail.com
can u send me this project to my email vaahost@gmail.com
I just need the tables and realtion you made in sql 2008, if you can email me that fahdriaz@gmail.com
i m creating a database management project in my college ,can u plz send me d code for reference my email id is aashish4592@gmail.com
Heyyy pls send me the code.. pls pls
pls sir send me code.. my email id is pari.sonia01@gmail.com
sir..plz will u help me..plz send me the coding of this project….
my email-id is– ruchinishad@gmail.com
Hello… Can u help me? i need the coding…can u send…to my email.
waniey_mickey91@yahoo.com
i like your project and will like to finish it, send me the source code you have including DBMS, and i will finish it and share on this page
I WANT PROJECT CODE FOR REFERENCE… SO U POSSIBLE TO GIVE ME
hai! plz send me the source code for this project my email id is
firdousfatima17@yahoo.com
sir plzz send me its code to my mail id alka_susan@yahoo.com plzzz
Hi………… Nice project. Can i have the source code for this project. I am also trying to do same project just like urs….
plzzzzzzzz send to mahith.chinna@gmail.com
can you please send this code for me via prolifik10@yahoo.com
hello sir can i get source code for this project …….harshadyeola92@gmail.com
Please send the code for this project
mail Id : npbhatjee@gmail.com
welll sir i am doing the same project for this semester … sir can i get the source code for this project plzzz..!!.. ma email id …………. sachin_nasari@yahoo.com
plz send me mini project in java travel agency management
hi sir..please give me the full code of this project . its really important and i really like the way you have executed it..it looks simple and easy to understand..this is the first time i am studying sql and it would be kind enough if you could help me out..kindly mail me the whole project to my email id.. shagundevgan@yahoo.com. please reply soon sir
please send me code m.awaisaltaf@gmail.com plz plz
hi sir, can i ask u a favor.. can u send me this code coz i need it for my group project in my college ,can u plz send me d code for reference my email id is ivan_tam1021@live.com.my
sir please send the coding to this email id…
arshusingh16@gmail.com
hello sir.. im doing my college project on Vehicle Ticketing System. i want ur source code to complete my project so can u please provide me your source code so that i can complete my project. my email id is mridul.ghimirae@gmail.com
hope to hear soon
thankyou
plzzzzz send bus reservation code for my project purpose.
sir plzzzzz send the source code of the project my mailid:yganesh558@gmail.com
Sir Can u please send me the coding ,Coz I also have to build the same project
My Email id is terencenero@gmail.com
hello sir:) i dont want your source code but i want to refer your front end to design ma project’s front end..if possible send me the snapshots of front end to the following email_id
anoop.a.goudar@gmail.com
Hello sir,
may i please have your source code. kindly send me the codes to this id: fatz_n@hotmail.com
thank you
hi sir, thank you for sending me the codes for this project but i will like you go through the codes and better still send the software if possible to help me understand the codes better.thank you once again. prolifik10@yahoo.com
hey can you send me it’s source code. at saleha.iitd@gmail.com
thank you
can you please tell me what data set did you use and how did you get it.
Can I please have the coding of this project ‘bus online reservation’ ?? I require it asap !! Could you mail me a Vb.NET coding of this ??? – tarunhotshot27@gmail.com
Sir,
really Very nice to under stand
Please send me the source code to my mail id kvenkatakrishnan305@gmail.com
hi sir plz send me the source code to my mail id chelli.manasa @gmail.com i want this project code urgently
sir,
plz send me the source code in c++ to my mail id marymathew362@gmail.com
pls send the source code in my email id marymathew362@gmail.com
pls send the source code in my email id aisha.siddiqua77@gmail.com
Hi , can u please send the functional requirements for this project..following is my mail id
shwethakumar92@gmail.com
requesting to send the source code in my email add jervyquito_17@yahoo.com
sir, A very good job and helpfull for the students. Please send me the exact source code for this project.It will be very needfull
Sir Can u please mail me the full project.
my email id is vaishalivchoudhary@gmail.com
pls send me the coding for this pls very urgent
pls send me the coding and form detail i need it immediately
sir can u please mail me full project i need it very urgently … my mail id is akulosopher@gmail.com
Sir plz send me d code
00crasher008@gmail.com
Hi Sir,
I need to implement it in real can you please send front end design or source code.
Your help will be much appreciated. My email id is vikash.kr07@gmail.com
plz sir send me the project on my mail……wafazahra555@gmail.com
sir,
please send me the source code of this project………
i am waiting for your reply….
pavankore143@gmail.com
please send me the code of this project please please!
preksharaj0@gmail.com