Monday, February 25, 2008

JFreeChart

The following link is the teach of use JFreeChart library.
http://www.oracle.com/technology/pub/articles/marx-jchart.html

Friday, February 15, 2008

The best java script table sorting

That is a good sample to table sorting by javascript.
http://www.frequency-decoder.com/demo/table-sort-revisited/script-sort/

It could sort data with "/" and can be sort number and char very well in same column.

Thursday, February 14, 2008

No install version mysql5 on windows

MySQL is a good database for testing.
Today i try to install in company, it is very easy to use as no install version (just need to unzip)

http://book.opensourceproject.org.cn/lamp/mysql/mysql5cert/opensource/0672328127/ch24lev1sec2.html

Wednesday, February 13, 2008

To prevent execute oracle sql script to prompt input dialog

It is very simple, just a single line command.

SET DEFINE OFF;

After execute that command the oracle will not prompt the input dialog when your SQL query contains '&' char.

Hope this help ~

Wednesday, February 06, 2008

SSH and Remote Desktop

Today I find a useful document to talk about the SSH connection.
I using this configuration exactly on my Vista PC.
I can connect to home PC and via browser web page via Home network.
I think it better than use company proxy server as I don't want to leave any history.

Hope this page can help any people want to setup the SSH.
http://theillustratednetwork.mvps.org/Ssh/RemoteDesktopSSH.html

Thursday, January 31, 2008

Excel to create drop down list

Less chance to use excel, i only use it when i am study in IVE.
I read the special excel, it could create a complicate drop down list. I am interest so i try to find the solution....
This is a good site to teach that simple method to create drop down list.
http://www.contextures.com/xlDataVal02.html

Friday, January 18, 2008

Oracle start with .... connect by

It is a very useful script. I never use it before it like a recursive loop to get all the result in single SQL query.

http://www.adp-gmbh.ch/ora/sql/connect_by.html

Tuesday, January 15, 2008

Ajax Mistakes

It just reference site to talk about the mistake of using Ajax:
http://alexbosworth.backpackit.com/pub/67688

HTML Form Submit Behavior

Long no see and write this blog!
I think i have much time to record my knowledge and testing.
That time i want to talk about the html form submit.
It make me feel confuse in IE( I test it on IE6).

Behavior 1 :
When form only have a single input text field, and user press enter button, it will directly submit the form.

Behavior 2:
When form not only have a single input text field, and user press enter button, it will acting click submit button to submit the form.

you can simple test this behavior, you only need to add a javascript on