Niaz Bin Sirajniazbinsiraj.hashnode.dev·Dec 16, 2024The Tale of an Enum and a BeanPropertyRowMapper: A Spring Developer's QuestIt was a quiet afternoon in my coding world when a peculiar bug showed up. I was working on a Spring-based web application, mapping database records to Java objects using BeanPropertyRowMapper. Everything seemed routine—until an enum property decided...41 readsSpring
Anirban Chandcse-unveiled.hashnode.dev·Dec 15, 2024JDBC vs Hibernate vs JPA vs Spring Data JPA: A Beginner’s Guide to Java Data Handling ✨In the world of Java application development, dealing with databases is a crucial part of most projects. The challenge? Picking the right tool or framework for interacting with databases efficiently. If you’re confused by terms like JDBC, Hibernate, ...Java
Faizan Firdousifaizancodes.hashnode.dev·Nov 3, 2024MySQL and JDBCI am here to share what I have learned in the past few days. I have 𝗹𝗲𝗮𝗿𝗻𝘁 𝗯𝗮𝘀𝗶𝗰𝘀 𝗼𝗳 𝗠𝘆𝗦𝗤𝗟:-- How to run queries-- Types of keys: primary, foreign, composite-- How to perform CRUD (Create, Read, Update, Delete) operations-- How t...JDBC
JavonetforJavonet Blogjavonet.hashnode.dev·Sep 26, 2024JDBC Drivers Integration Across C# and Languages Such as JavaScript, Python, Golang, C++, Perl and Ruby.Many developers face the challenge of integrating JDBC with languages that don’t natively support it, such as C#, JavaScript, Python, Go, and others. This creates a bottleneck for cross-platform applications where diverse technologies need to interac...Programming Blogs
Gyuhang Shimplto001.hashnode.dev·Sep 24, 2024Spark Thrift Server Configuration & ConnectionSpark Thrift Server Configuration Spark Thrift Server 가 Apache Ambari 로 설치하였다고 가정합니다. Spark Thrift Server 설정 Spark CONFIGS 로 이동하여 아래와 같이 설정을 합니다. # Advanced spark2-hive-site-override spark.thrift.server.port: 10015 (Default) hive.server2.tra...apache ambari
K Koyalbinarybelle.hashnode.dev·Sep 19, 2024Customer feedback system using mysql and jdbc - Review question for core javaIn this blog post, we'll explore how to create a simple Java application using JDBC to manage feedback, customers, and products. Our application will allow users to submit feedback, view it by product, update comments, and delete feedback entries. We...1 likeprepared statement
Chirag Radhakrishnachiragradhakrishna7.hashnode.dev·Sep 14, 2024Java Database Connectivity (JDBC)In today’s world, data is at the core of everything we do. Just as we rely on effective data utilization on the front end, we also need robust solutions on the back end to manage and process this data. This involves employing back-end frameworks such...database connection
Shubham Gordeshubhamgorde19.hashnode.dev·Sep 14, 2024Java t1Today I am going to show to java basic syntax and how it works public class Main { public static void main(String[] args) { System.out.println("Hello World"); } } So this is a basic syntax of java where the first world is public mea...java coding masteryJava
Nikhil Soman Sahunikhilsomansahu.hashnode.dev·Sep 12, 2024How to Fix the SqlExceptionHelper Null Return in Hibernate with Spring Boot: A Step-by-Step GuideIf you’ve encountered the error message: Cannot invoke "org.hibernate.engine.jdbc.spi.SqlExceptionHelper.convert(java.sql.SQLException, String)" because the return value of "org.hibernate.resource.transaction.backend.jdbc.internal.JdbcIsolationDelega...48 readsSpringboot
Aniket Gudgaljavaspringboot.hashnode.dev·Aug 12, 2024Introduction to JDBCJDBC stands for Java Database Connectivity. It is a standard API provided by Oracle for Java applications to interact with different sets of database Architecture of JDBC Application: It is a Java applet or a servlet that communicates with a data so...10 likesJDBC