Posts Tagged ‘ hibernate ’
when i tried to add another datasource to the hibernate environment i ran into problems (connection timed out)… i now use the xml way which i talk about earlier … well i didn’t want to install mysql 6 because its just in the alpha release. so i wrote this little cgi script. later when mysql [ READ MORE ]
well its not that spectacular but for me it couldn’t be better: In my Application which i’m developing over a year now i need to access the radius database for user modifications. say simple: in my app i want to control who can access the internet. I opend the database port 3306 by uncommenting the bindto=127.0.0.1 in [ READ MORE ]
inheritance is a well known part of polymorphism in any object orientated language. To map something like an abstract class called “Customer” which has two subcalsses called “PrivateClient” and “CompanyClient” you have three different choices which are well documented in the hibernate docs (table-per-class, …). When you retrieve the class from the database by runtime, hibernate [ READ MORE ]