Software Engineer Interview Questions for entry and Mid Level – Part3

Introduction This post will have most important interview questions which used to ask in most of the reputed companies like Google, Amazon, NetApp, Wells Fargo, Wipro, Infosys, TCS, SAP etc. We are just adding Questions to this post and the Read More …

Oracle Database Connection With Examples

To achieve this, JDBC specifications are agreed upon within the Java community–and each database vendor is then left to implement these specification to work with their product. Oracle Drivers Oracle provided two types of Drives. Thin OCI OCI   The OCI Read More …

DB2 Database Connection With Examples

An Example of connecting to DB2 Database using JDBC Driver. A typical example code of connect to database will look like this Class.forName(jdbcClassName); Connection connection = DriverManager.getConnection(url, user, password);   Listed below are connection examples for three common JDBC drivers Read More …

Java database connection Code Examples

Introduction JDBC is an unofficial acronym for java database connectivity. JDBC helps us to connect to a database and execute SQL statements against a database. JDBC api provides set of interfaces and there are different implementations respective to different databases. Read More …

MySQL Database Connection With Examples

Introduction MySQL is a popular open source database which can be used free of charge. MySQL is a relational database. Web applications can use this database to store persistence data. This post explains how to set up Java applications to Read More …