i´m using kent boogaart dlls wpf converters im vs2008 http://wpfconverters.codeplex.com/downloads/get/648993 when try import kent.boogaart.converters.dll, receive error. is release vs2012 ? http://wpfconverters.codeplex.com/releases/view/104331
i ask on how retrieve records, database table, time range 10pm 6am. try this: select * table creation_time between '2013-05-10 10:00:00' , '2013-05-10 18:00:00'
i noticed (via jmap+jhat) app leaking storing many instances com.mysql.jdbc.field class - double checked code make sure closing preparedstatements, find few missing didn't change outcome. - preparedstatement created , closed right away - several others created @ start , reused many times - using org.apache.tomcat.jdbc.pool.datasource connection pool what can cause type of behavior? are closing of preparedstatements / result sets using: preparedstatement stmt (possible assignment here); try { // work prepared statement resultset rs; try { while (rs.next()) ... // process results } { rs.close(); } } { stmt.close(); } so guarantee result sets closed when finished (regardless of exceptions) , statements closed (regardless of exceptions)? there other ways write that, idea same. if you're doing of properly, unless have many references it's taking inordinate amount of memory, it's ok , nothing needs done it.
Comments
Post a Comment