JPA: How do I get a scalar result of type Long-- not BigNumber-- from Oracle NUMBER? - by rektide The default mapping from an Oracle NUMBER value is into BigNumber... How can I get a scalar result query to return a Long instead? Read the article
int i = 2; // what do you use as a throwaway line when you just need something to breakpoint on? - by rektide Whenever I want a breakpoint someplace where there isnt anything to break on just (inside a loop, &c), I tend to automatically drop down a: int i = 2; I'm curious what others use. Read the article