Blog

Insights, tutorials, and thoughts on web development and technology.

Java Primitive Data Types

Java Primitive Data Types

All modern programming languages needs to have concept of variables. Variables are there in a programming language to store data into. There are 8 data type defined in Java which are inbuilt in java c...

May 25, 2017 · Tushar
Alter table to remove Foreign Key or add DELETE CASCADE (MySQL)

Alter table to remove Foreign Key or add DELETE CASCADE (MySQL)

Step 1 : Get the Foreign Key Name. SHOW CREATE TABLE tableName; Note the name of Foreign key (which is mostly auto generated) output will look something like CONSTRAINT `FK4C5B93445F11A0B7` F...

Dec 20, 2016 · Tushar
Consuming JSON webservice through C++/VC++

Consuming JSON webservice through C++/VC++

Being a C++ developer ,It was quite difficult to start working with webservices. Believe me after setting a proper development environment it was quite simple to access json webservice and extract jso...

Sep 23, 2016 · Tushar
Difference between the Apache HTTP Server and Apache Tomcat?

Difference between the Apache HTTP Server and Apache Tomcat?

Apache Tomcat is used to deploy your Java Servlets and JSPs. So in your Java project you can build your WAR (short for Web ARchive) file, and just drop it in the deploy directory in Tomcat. So basi...

Apr 16, 2016 · Tushar