You are on page 1of 6

ACADEMIC YEAR : 2019-20

PROJECT REPORT ON
DAILY TRAVEL BOOKINGS
 
• ROLL NO : 6032
• NAME : P.NIRMAL
• CLASS : XII
• SUBJECT : COMPUTER SCIENCE
• SUB CODE : 083
 
• PROJECT GUIDE: Mr PM JIGAJINNI
PGT (CS)
SAINIK SCHOOL AMARAVATHINAGAR
TIRUPPUR DIST
TAMILNADU
INTRODUCTION
This software is helpful to citizens,
being exploring in nature and also in urgency
to go for a board towards achieving their
respective objectives . For booking the
transport ­,this application allows user
friendly environment.
SOURCE CODE(sample)
DATABASE CREATION:
import mysql.connector as sql
conn=sql.connect(host='localhost',user='root',password='manager',database='travel_bookings')
c1=conn.cursor()
if conn.is_connected:
c1.execute("create database travel_booking")
print("database created successfully")
TABLE 1 CREATION:
import mysql.connector as sql
conn=sql.connect(host='localhost',user='root',password='manager',database='travel_bookings')
c1=conn.cursor()
c1.execute('create table accounts(Phone_number bigint(13) primary key,name
varchar(30),password bigint(10));')
conn.commit()
OUTPUT
BIBLIOGRAPHY

 
  
Computer science With Python - Class XI By :
Sumita Arora
A Project Report On Blood Bank Management
System (BBMS)
By : Praveen M Jigajinni
Website: https://www.w3resource.com

You might also like