Tag: java

  • The ‘Maya’ of static

    What if you want to implement main() function in the program. What should be the syntax? public static void main( string[] args) is the customary declaration of main() function followed by its definition. Why to declare main() function static? The reason is that there is only one main() method in a particular class and it… Read.

  • Writing your first JDBC Application?

    Ok, after a long time, here is core technical blog for all of u. If u r wondering how to access MySQL database using JAVA program. The answer is JDBC application! Before going to coding, u must understand certain aspects of JDBC programming. 1. You must include Jconnector in the classpath of ur machine so… Read.