462 reputation
111
bio website
location
age
visits member for 5 months
seen 8 hours ago
stats profile views 35

Very boring


Apr
25
comment JavaFx Title Bar Image comes up black all the time
I have the same problem. java runtime 1.7.0_21-b11, javafx runtime 2.2.21-b11. I was try with many images(ico,png,jpg) and differents sizes but only a black square appear. If any one found a solution, please let us know.
Jan
18
awarded  Enthusiast
Jan
15
comment javafx pass fx:id to controller or parameter in fxml onAction method
@DmitryNelepov I was edit the answer with some examples, hope this help you.
Jan
15
revised javafx pass fx:id to controller or parameter in fxml onAction method
added 966 characters in body
Jan
11
revised Compare Date & Time Javascript
added 285 characters in body
Jan
11
comment Compare Date & Time Javascript
May be you have some problem with your variables(date, start, dateEnd or end) try create dates like that new Date("2013/01/03 12:30"); and new Date("2013/01/03 12:31"); and see if working.
Jan
11
comment Compare Date & Time Javascript
@D-W getTime() works for all browsers. w3schools.com/jsref/jsref_settime.asp
Jan
11
answered Compare Date & Time Javascript
Jan
10
accepted pg_connect or PDO
Jan
10
revised pg_connect or PDO
edited body
Jan
10
comment pg_connect or PDO
@KingCrunch is the time for all, connection and retrieve the data, and yes there are small values ~600ms. But in my app. the response time is critical. Thanks for your time.
Jan
10
comment pg_connect or PDO
Thank @DanielVérité.
Jan
10
comment PDO vs pg_* functions
Explosion, are you sure? I'm new with PHP and Postgre and by now I need to decide wich technology I will use, I was running some tests and pg_connect seem to be more faster than PDO.
Jan
10
comment pg_connect or PDO
Thanks for your answer, now I think I may use both because some "pages" are actually services and need to give very quick responses, and other are regular pages.
Jan
10
comment pg_connect or PDO
@KingCrunch, I'm running the defaults installation of PHP and postgreSQL in my machine, your are right I repeat the test many times and never reach 30%, but is never under 14% and usually is around 22%. I will check if some missconfiguration. Thanks.
Jan
10
comment pg_connect or PDO
@vanneto sorry, I ask because is a practical problem, I need to choose and many experienced people here can have the key for that decision.
Jan
10
asked pg_connect or PDO
Jan
6
comment Lock table cell width, without specifying it
The height don't work properly in IE, my formula is: forget the <tr> height, set the height and max-height per <td>, don't put text inside the <td> directly, insert a <p> inside the <td> for your text and set the height, max-height and overflow:hidden for it. You can make it easy setting the css for <td> and <p> that belong your table.
Jan
6
comment Fill factor for a sequential index that is PK
In ms SQL Server is different, a pk can't be considered as an index as long I know. Thanks a lot one more time I will give a trip to your others answer.
Jan
6
comment Fill factor for a sequential index that is PK
Thanks, one more question, I will add a index for transaction_id with fill factor of 100. The UNIQUE keyword is not necessary because the field is PK, right?