ER Diagram for my Ecommerce website Create, insert queries: -- creating Ecommerce databasecreate database Ecommerce; use Ecommerce; -- creating customer tablecreate table customers(custID varchar(10) primary key,Name varchar(50),Dob date,Email varchar(100),Password varchar(30),Phone bigint,Address…
MURALI SELVARAJ
updated on 23 Feb 2023
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by MURALI SELVARAJ (5)
Project 1 - Create a new microservice for allowing customers to getInsurance policy from your banking app
Screenshot of the dependencies selected while creating insurance microservices from start.spring.io website. I have created Insurance microservices and successfully running on the port 4007 I have created 3 config files for the insurance in my personal GitHub repository (for dev, default & prod profiles)…
12 Apr 2023 01:33 PM IST
Project 2
Creating Ecommerce in MongoDB use Ecommerce db.createCollection("customer") db.customer.insertMany([{cust_id:1, cust_name:"Anjali", email:"anjali@gmail.com", city:"Delhi", order_value:2000, order_date: "2023-01-23"},{cust_id:2, cust_name:"Raju", email:"raju@gmail.com", city:"Mumbai", order_value:5000, order_date: "2022-09-23"},{cust_id:3,…
02 Mar 2023 12:13 PM IST
Project 1
ER Diagram for my Ecommerce website Create, insert queries: -- creating Ecommerce databasecreate database Ecommerce; use Ecommerce; -- creating customer tablecreate table customers(custID varchar(10) primary key,Name varchar(50),Dob date,Email varchar(100),Password varchar(30),Phone bigint,Address…
23 Feb 2023 01:17 PM IST
Project 2
Example output: *************Welcome to Banking Application************* How many number of customers do you want to input? 2 Enter Account No: 11112 Enter Account type: Savings Enter Name: Murali Enter Balance: 5000 Enter Account No: 11113 Enter Account type: Current Enter Name: Murali Enter Balance: 10000 Do you want…
29 Dec 2022 09:31 AM IST
Project 1
Example Output: 1. Customer 2. Seller 3. Admin Also I have handled the exception try { Product[] cartProducts = current.getCart().getListOfProducts(); // System.out.println("Inside Try Block"); if(cartProducts.length > 0) { for (int i = 0; i < cartProducts.length; i++) { System.out.println(cartProducts[i].getProductId()…
20 Dec 2022 11:30 AM IST