0% found this document useful (0 votes)
17 views

Add Cart For Student: Check If The Book Is Already in Your Cart

The document outlines several processes for an online bookstore: adding books to a shopping cart, deleting or updating book information, adding new books, searching for books, and logging in. Each process includes validating user inputs, making changes to database tables, and refreshing displays upon successful completion.

Uploaded by

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

Add Cart For Student: Check If The Book Is Already in Your Cart

The document outlines several processes for an online bookstore: adding books to a shopping cart, deleting or updating book information, adding new books, searching for books, and logging in. Each process includes validating user inputs, making changes to database tables, and refreshing displays upon successful completion.

Uploaded by

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

ADD CART FOR STUDENT

ADD TO CART

USERNAME,USERID,ISBN, TITLE,
AUTHOR, CATEGORY,
DESCRIPTION, STOCK

CLICK THE BOOK INFOMATION FROM


DATAGRID
VALIDATE IF YOU LIKE TO ADD BOOK IN YOUR
CART

CHECK IF THE BOOK IS


ALREADY IN YOUR CART

THIS BOOK IS
ALREADY BEEN IN
YOUR CART

IF
MATCH

ADD THE INFORMATION OF


THE BOOK TO TBL_CART
(DATABASE)

TBL_CART
(DATABASE)

SUCCESSFULLY ADDED
TO CART

END

DELETE BOOKS FOR LIBRARIAN

DELETE BOOKS

ISBN, TITLE, AUTHOR, CATEGORY,


DESCRIPTION, STOCK

CLICK THE BOOK INFOMATION FROM


DATAGRID
VALIDATE IF YOU LIKE TO DELETE BOOK
INFORMATION

IF
DELETE

DELETE THE INFORMATION


OF THE BOOK TO
TBL_BOOKS
(DATABASE)

SUCCESSFULLY DELETED
REFRESH CONTENT OF THE DATAGRID

END

TBL_BOOKS
(DATABASE)

UPDATE BOOKS FOR LIBRARIAN

EDIT BOOKS

ISBN, TITLE, AUTHOR, CATEGORY,


DESCRIPTION, STOCK

CLICK THE BOOK INFOMATION FROM


DATAGRID
VALIDATE IF YOU LIKE TO UPDATE BOOK
INFORMATION

IF
UPDATE

UPDATE THE
INFORMATION OF THE
BOOK TO TBL_BOOKS
(DATABASE)

SUCCESSFULLY UPDATED
REFRESH CONTENT OF THE DATAGRID

END

TBL_BOOKS
(DATABASE)

ADD BOOKS FOR LIBRARIAN


ADD BOOKS

ISBN, TITLE, AUTHOR, CATEGORY,


DESCRIPTION, STOCK

ENTER ISBN , TITLE , AUTHOR , CATEGORY,


DESCRIPTION, STOCK OF THE BOOKS

VALIDATE IF IT WILL BE SAVE TO DATABASE

N
IF SAVE

SAVE THE INFORMATION


OF THE BOOK TO
TBL_BOOKS
(DATABASE)
DATABASE REFRESH

SUCCESSFULLY SAVE
REFRESH CONTENT OF THE DATAGRID

END

TBL_BOOKS
(DATABASE)

SEARCH BOOKS
LOG IN

SEARCH

ENTER ISBN & TITLE &


AUTHOR & CATEGORY OF
THE BOOKS

MATCH ITEMS IN THE


TBL_BOOKS (DATABASE)
GET THE INFORMATION OF
THE MATCH BOOKS

FILTERED INFORMATION OF THE


BOOK THAT YOU ARE LOOKING
FOR

END

TBL_BOOKS
(DATABASE)

LOG IN

LOG IN

PASS,USERNAME

ENTER USERNAME AND


PASSWORD

MATCH USERNAME AND


PASSWORD TO DATABASE

TBL_USER
(DATABASE)

N
INVALID USER
MESSAGE

IF
VALID

GET INFORMATION OF
THE USER TO DATABASE

WELCOME MESSAGE

END

You might also like