We all know what Continuous Integration (CI) is, right? It is the first step in our journey. In simple words, CI is a software engineering practice where each check-in made by a developer is verified by either of the following: Pull mechanism: Executing an automated build at a scheduled time Push mechanism: Executing an automatedContinue reading “Continuous Integration with Jenkins 2”
Category Archives: java
Using prepared statements in Java with examples
The Prepared Statement is a slightly more powerful version of a Statement, and should always be at least as quick and easy to handle as a Statement.The Prepared Statement may be parametrized. Most relational databases handles a JDBC / SQL query in four steps: Parse the incoming SQL query Compile the SQL query Plan/optimize theContinue reading “Using prepared statements in Java with examples”