Skip to content

Instantly share code, notes, and snippets.

View SateeshKumbhakar's full-sized avatar
🎯
Focusing

SATEESH KUMBHAKAR SateeshKumbhakar

🎯
Focusing
View GitHub Profile
@SateeshKumbhakar
SateeshKumbhakar / JDBCOperations.java
Last active September 7, 2023 18:27
Basic JDBC code and some basic approach to perform CRUD Operations On JDBC
package jdbcConnection.jdbc;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class JdbcOperation {