Search Results

4
votes

Null or empty string to represent no data in table column?

In the context of the relational database model, null indicates "no value" or "unknown value". It exists for exactly the purpose you describe. UPDATE: Sorry, I forgot to add that while mos …
4
votes

Is there a more efficient way of making pagination in Hibernate than executing select and count queries?

Baron Schwartz at MySQLPerformanceBlog.com authored a post about this. I wish …