Blog

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

Operators in Java

Operators in Java

There are various operators defined in Java language to carry out different operations with the Variables in Java. If you know any of the programming language, most of the operators in Java are self e...

May 25, 2017 · Tushar
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