-
as seen on Geeks with Blogs
- Search for 'Geeks with Blogs'
I have to deal with all types of code that was written by people from different organizations, different countries, using different languages, obviously standards are different across these sources. One of the biggest headaches that I ahve come across is how people differ in the formatting of their…
>>> More
-
as seen on Oracle Blogs
- Search for 'Oracle Blogs'
I received this question from a customer today, and it took me more than a few minutes to remember where this preference was located in SQL Developer. This tells me that the topic is ripe for blogging
How do I go FROM:
select *
from scott.emp
where ename like '%JEFF%'
TO
SELECT *
FROM…
>>> More
-
as seen on SQL Blogcasts
- Search for 'SQL Blogcasts'
I was searching recently for a code formatter for T-Sql
and I came accross this nice little utility that I wanted to share: http://www.wangz.net/cgi-bin/pp/gsqlparser/sqlpp/sqlformat.tpl
I've been dealing with a lot of legacy code latley and
there is nothing I find more infuriating…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a advanceddatagrid that has around 15 columns. Some are string,
some are numbers. I have shown 4 columns below.
The number columns have formatting done for zero precision and 2
digits precision. The itemRenderer is just to show Blue Color if the
number is +ve and Red Color if the number is…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to format an UITextField as user types text, for instance to show separator for thousands.
I found this web page : http://www.iphonedevsdk.com/forum/iphone-sdk-development/16512-trying-add-commas.html
It seems that shouldChangeCharactersInRange: is not a good solution. I thought of a…
>>> More