create table hibernatetutorial.`contact` (`id` int not null, `firstname` varchar(50), `lastname` varchar(50), `email` varchar(50), constraint hibernatetutorial.`PRIMARY` primary key (`id`));
And also you can get rid of error syaing JDBC Driver class not found by just adding appropriate .jar file of related database.
View All Comments
| View Tutorial