This tutorial will teach you Credit and Debit Calculation using Java Mysql.Account details are retrieving from the database. it will be calculating the total amount of Debit and Credit when enter the relavent account holder name on the textfield and click find button.
Paste the code inside the ok button
try { Connection con; PreparedStatement pst; String name = txtname.getText(); Class.forName("com.mysql.jdbc.Driver"); con = DriverManager.getConnection("jdbc:mysql://localhost/wholesaleshop", "root",""); String sql="select sum(debit), sum(credit) from report " + "where name ='"+ name +"'and debit >0"; Statement st=con.createStatement(); ResultSet set=st.executeQuery(sql); if(set.next()) { txtcredit.setText(set.getString(1)); txtdebit.setText(set.getString(2)); } } catch (Exception ex) { ex.printStackTrace(); }
The Touchable Shop POS (Point of Sale) system is a sophisticated software solution developed using…
Creating a responsive login form is a crucial skill for any web developer. In this…
In this tutorial will teach Laravel 12 CRUD API by step. Laravel 10 CRUD Application …
In this lesson we talk about laravel 12 image uploading and display the image step…
In this tutorial will teach Laravel 12 CRUD Application step by step. Laravel 12 CRUD…
Conditional statements in Python allow us to control the flow of execution based on conditions.…