ECOMMERCE
ECOMMERCE
MUKHLA
TOPIC – E COMMERCE
1 INTRODUCTION
2 FRONTEND
3 BACKEND
4 DATABASE CONNECTIVITY (JDBC)
5 PRIMARY KEY
6 SECONDARY KEY
7 NOT NULL
8 DEFAULT
9 CHECK
10 HTML
11 XML
12 WEB BROWSER
13 QUERY
14 CONCLUSION
CERTIFICATE
1 EUNIKI SUCHIANG
2.FANCIFUL DHAR
3.HOSPI LANGSHIANG
S.Kumar
PGT (IP
ACKNOWLEDGEMENT
First of all we express our sincere thank to Shri S.Kumar PGT (IP) who extended his
help and guidance us in every matter of this project work
We also thanks to our friends who help us in every aspect of this project work
We finally extend our sincere thank to our honourable Principal Sir R.k. Dixit
who support us in every field of education.
INTRODUCTION
E-commerce refers to the purchase and sale of goods and/or services via electronic
channels such as the internet. E-commerce was first introduced in the 1960s via an
electronic data interchange (EDI) on value-added networks (VANs). The medium
grew with the increased availability of internet access and the advent of popular
online sellers in the 1990s and early 2000s. Amazon began operating as a book-
shipping business in Jeff Bezos' garage in 1995. EBay, which enables consumers to
sell to each other online, introduced online auctions in 1995 and exploded with the
1997 Beanie Babies frenzy.
The changing market represents a vast opportunity for businesses to improve their
relevance and expand their market in the online world. Researchers predict e-
commerce will be 17 percent of U.S. retail sales by 2022, according to Digital
Commerce 360. The U.S. will spend about $460 billion online in 2017. These
figures will continue to climb as mobile and internet use expand both in the U.S. and
in developing markets around the world
ADVANTAGE OF ECOMMERCE
Customers can easily select Ecommerce offered many advantages to companies and
customers but it also caused many problems.
DISADVANTAGES OF ECOMMERCE
Any one, good or bad, can easily start a business. And there are many bad
sites which eat up customers’ money.
There is no guarantee of product quality.
Mechanical failures can cause unpredictable effects on the total processes.
As there is minimum chance of direct customer to company interactions,
customer loyalty is always on a check.
There are many hackers who look for opportunities, and thus an ecommerce
site, service, payment gateways, all are always prone to attack
fRONTENd
In software engineering, the terms front end and back end refers to the separation of
concerns between the presentation layer (front end), and the data access layer (back
end) of a piece of software, or the physical infrastructure or hardware. In the client–
server model, the client is usually considered the front end and the server is usually
considered the back end, even when some presentation work is actually done on the
server.
BACKEND
CONSTRAINT
column3 SQL Create Constraints
Constraints can be specified when the table is created with the CREATE TABLE
statement, or after the table is created with the ALTER TABLE statement.
Syntax
CREATE TABLE table_name (
column1 datatype constraint,
column2 datatype constraint,
datatype constraint,
....
);
1. Primary key
A primary key is a field in a table which uniquely identifies each row/record in a
database table. Primary keys must contain unique values. A primary key column
cannot have NULL values. A table can have only one primary key, which may
consist of single or multiple fields.
1. Secondary Key
A secondary key is a field that is identified as being suitable for indexing the data
such as a surname, It is used to sort the data in a different order to the primary key,
A table can have many secondary keys in fact every field could be a secondary key
FOREIGN KEY The SQL FOREIGN KEY CONSTRAINT is used to ensure the
referential integrity of the data in one table to match values in another table. The
FOREIGN KEY CONSTRAINT is a column or list of columns which points to the
PRIMARY KEY of another
Not-Null
By default, a column can hold NULL values. The NOT NULL constraint enforces a
column to NOT accept NULL values. This enforces a field to always contain a
value, which means that you cannot insert a new record, or update a record without
adding a value to this field.
2. Default constraint
Default constraints are a special case of column defaults. A column default is some
value or function that the column will take when an INSERT statement doesn't
explicitly assign a particular value. In other words, the column default is what the
column will get as a value by defau
1. Check constrain The CHECK constraint is used to limit the value range that can be
placed in a column. If you define a CHECK constraint on a single column it allows
only certain values for this column. If you define a CHECK constraint on a table it
can limit the values in certain columns based on values in other columns in the row.
Hypertext Markup Language is the standard markup language for creating web
pages and web applications. With Cascading Style Sheets and JavaScript it forms a
triad of cornerstone technologies for the World Wide Web. Wikipedia
DATABASE DESIGN
<html>
<head>
<title>
Ecommerce
</title>
</head>
<H4 align=”centre”>ecommerce</H4></font>
Purchasing selling and exchanging of goods and services over computer network
<tr>
</tr>
<tr>
</tr>
</table>
<p>
<ul>
</ul>
Table of contents</a></center>
</font>
</body>
</html>
XML
Browser
A browser is an application program that provides a way to look at and interact with
all the information on the World Wide Web.
1 internet explorer
2 opera
3 google chrome
Conclusion
After careful observation, it has come to my conclusion that e-commerce has
undeniably become an important part of our society. The world wide web is and
will have a large part in our daily lives. It is therefore critical that small
businesses have their own to keep in competition with the larger websites. Since
web developers have lowered down the prices for their services, it has become
more affordable for small businesses to use the world wide web to sell their
products. Although there are negative aspects of e-commerce, small businesses
have tried to accommodate to the needs of the consumers. For example, one of
the negative aspects of e-commerce is that consumers lack the advice and
guidance of sellers, to accommodate that, they have customer service through
the phone of online to answer any questions. It is also important to note that e-
commerce does not benefit all small companies equally. How much revenue a
business gets from e-commerce depends on what kind of service it gives. For
example, most people would like to try on clothes before they buy them, so it
probably would not benefit a small business that sells clothes as much as a small
business that sells home supplies or specialty books. Nevertheless, e-commerce
does benefit any business even in small ways. This is why it is crucial to
understand how e-commerce affects small businesses because it is becoming
such a huge part of how society functions that it effects the economy greatly and
whatever happens to the economy affects us. This is why is it important to
understand this subject because in the long run, it will affect all of us
Query
Write sql command for the following
3 To list details of all product where product name start with “A”
Select * from product
where product_name like “A%”;
4 To list product code, product name, category name (hint :use product and category
table)
Select product_code, product_name, catname from product, category
Where product.product_code=category.product;
14. To list b_code, b_name, address, payment_mode and amount of all payment and
buyer
16. To list details of all payment where amount is more than 25000
18. To add a new coloum contactno, datatype number, size 10 in the shippers table
Set qt=qt+20;
BIBLIOGRAPHY
1. SUNITA ARORA
2. RITA SAHU
3. JAVA BLACK BOOK