Jboss SEAM is by far the best programming framework for Java EE development as it solves most of the problems which arose for achieving a true MVC 2 implementation. All of the other frameworks like Struts and Spring MVC when used with presentation layer specifications like JSP and JSF 1.x while almost succeeding in the…
High Concurrency MySQL
Domas Mituzas (Facebook) speaks at the 2010 O’Reilly MySQL User Conference & Expo. Slides – assets.en.oreilly.com From the official conference description at en.oreilly.com War and peace stories from Facebook how to detect, analyze and fix problems below, inside and above overloaded MySQL servers. This covers concurrecy problems that appear in real world environments, beyond labs…
Jaspersoft At a Glance (Video webcast)
ãƒ¯ãƒ¼ã‚¯ãƒ–ãƒ¬ã‚¤ãƒ³ãƒ»ã‚¸ãƒ£ãƒ‘ãƒ³æ ªå¼ä¼šç¤¾ ジャスパーソフトè¨ç«‹æº–備室: Jaspersoft Business Intelligence Suite製å“ã¯ã€åŒ…括的ãªãƒ“ジãƒã‚¹ã‚¤ãƒ³ãƒ†ãƒªã‚¸ã‚§ãƒ³ã‚¹ãƒ•ァミリーã¨ã—ã¦ã€ä¸–界ã§ã‚‚ã£ã¨ã‚‚使用ã•れã¦ã„るオープンソースJavaレãƒãƒ¼ãƒ†ã‚£ãƒ³ã‚°ãƒ»ãƒ©ã‚¤ãƒ–ラリー(JasperReport)ã¨ãƒ¬ãƒãƒ¼ãƒˆãƒ‡ã‚¶ã‚¤ãƒŠãƒ¼(i-Report)ã€ã‚¤ãƒ³ãƒ¡ãƒ¢ãƒªãƒ¼åˆ†æžãƒ»OLAP分æžãã—ã¦ãƒ‡ãƒ¼ã‚¿çµ±åˆã®ETLãŒçµ±åˆã•れãŸã‚¹ã‚¤ãƒ¼ãƒˆè£½å“。Cognosã‚„Business Objects(SAP)ã®ä»£ã‚りã«å®šä¾¡ã§æ©Ÿèƒ½ã„ã£ã±ã„。
learning oracle application developer 115
learning step by step oracle pl sql developer from basic.
How to Connect to MySQL with Visual Basic .Net?
This short tutorial shows how to connect to MySQL server using Visual Basic .Net.
Simple Animation with Visual Basic 2008
This is a simple and very cool animation with VB 2008 ***IMPORTANT*** To make this project work you need these two pics- a bat with its wings and an the other bat with its wings down. To get these pics go the following site img121.imageshack.us img5.imageshack.us After going to the link copy and paste the…
Advanced T-SQL Query Needed?
I have a table:ID FK Num Color1 A 5 Red2 A 2 Blue3 B 2 BlueI need a query that will give me the result set of:Number Red Number Blue Total5 4 9
C++ Programming Tutorial 5
C++ Tutorial continued (Part 5), going through pointers a little more in depth as people didnt really seem to get it.
Oracle RAC 10g on VMware (CentOS 4) part 5
Step by step Oracle RAC on Linux. By Robert Malikian
How to set MySQL date from a result set to a PHP datetime object?
i am trying to set the date and time (DateTime stored in mysql database) to a php DateTime object, one way is to override the class some how to make that happen, but is there any easier way than that?e. g. $date = new DateTime();$date->setDate($mysql_resultset[‘date_time’]);and then format that date according and display it.