Author name: admin

Fish Inventory Shop using Java

This tutorial will teach you  to make a small Fish shop Inventory  system using Java. The following  system will use to manage the Fish shop. paste the code inside the ok button String item = txtstatus.getSelectedItem().toString(); double fish = Double.parseDouble(txtqty.getText()); if(item.equals(“KG”)) { double cal = (fish * 140) ; txtbill.setText(String.valueOf(cal)); } else { double cal […]

Fish Inventory Shop using Java Read More »

JSP CRUD tutorial

This Jsp web development tutorial will teach you how to do basic database functions that are CREATE RETIEVE UPDATE and DELETE . using Mysql Database.jsp crud tutorial will cover about the INSERT, SELECT, UPDATE and DELETE statements can be used in any database system, because this is support by all relational database systems. We will

JSP CRUD tutorial Read More »