skip to Main Content

Relating making an leave application – Mysql

Im trying to make an leave application in springboot and got the error that leave table cannot be created. Error : org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL "create table leave (id bigint not null auto_increment, end_date date, start_date date, status smallint, employee_id…

VIEW QUESTION

How to see the SQL queries Hibernate issuing for setting transaction level and autocommit – Mysql

On my MySQL server, in the general log I see a ton of logs that look like: 2023-03-31T09:31:23.208-07:00 2023-03-31T16:31:23.208345Z37028 Query SET autocommit=0 2023-03-31T09:31:23.211-07:00 2023-03-31T16:31:23.211201Z36956 Query set session transaction read write 2023-03-31T09:31:23.211-07:00 2023-03-31T16:31:23.211807Z36957 Query /* dynamic native SQL query */ select…

VIEW QUESTION
Back To Top
Search