Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 974253
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T03:24:24+00:00 2026-05-16T03:24:24+00:00

I am using Hibernate and MySql. I have a 2 tables: User: id, name,

  • 0

I am using Hibernate and MySql.

I have a 2 tables:

User: id, name, type
City: id, name, type
type: id, name

Where user.type has foreign key to user_type.id. and as well city.

I would like before deleting a row in user_type table, to check if any row from any table is related to it.

my columns are mapped for example:

@ManyToOne(fetch = FetchType.EAGER)
    @JoinColumn(name = "type_id")

How can I do it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T03:24:25+00:00Added an answer on May 16, 2026 at 3:24 am

    You said

    I have around 100 tables like User and City mapped to this value

    ok. Hibernate with JPA book says

    You may have removed all other references manually

    Which implies you should query manually any related Table. But it says if other entity references Type, database constraints prevent any inconsistency and you see a foreign key constraint exception. I Think it is the best way you can check out what you want. Otherwise, you should query manually for any related Table.

    try {
        userType = (Type) session.load(Type.class, id);
    
        session.delete(userType);
    /**
      * or JDBCException 
      * e.getCause()
      * e.getErrorCode() - vendor-specific
      */
    } catch (HibernateException e) {
        // checkout Exception right here e.getCause();
    } 
    

    All exceptions thrown by Hibernate are fatal. This means you have to roll back the database transaction and close the current Session. So you may want To open a new session.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using: Hibernate MySQL jBoss I have to create an application that allows user
I'm using Java 1.6, Hibernate 3.1, MySQL 5.5, XML mapping. I have two tables,
Hi I am using hibernate and Mysql. I have a class with a boolean
I have made an application using Java/Hibernate/MySQL, but whenever I try running it, it
I have a webservice using Hibernate as DAL - using MySql with InnoDB. Since
How can I get Hibernate (using JPA) to create MySQL InnoDB tables (instead of
I am trying to generate some tables using hibernate. I have following classes :
I have a problem with Hibernate (3.6.0.-Final) in my Java EE application using MySQL
I am using Grails 1.3.7 with hibernate 1.3.7 with MySQL 5.1. I have the
I am using Mysql. And I have two tables which are one-to-one related with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.