tag

home / developersection / tag

How to use social login for Google, Yahoo and Facebook
android apps 31-Jan-2018
How to use social login for Google, Yahoo and Facebook

Creating Login button give ease to a user to provide authentic user login in his/her application. There are several ways a user can provide the login to the application such as using google, facebook, yahoo, linkedIn, etc.

Threads in Java
java 29-Jan-2018
Threads in Java

A thread is a lightweight independent process. Threading allows multiple processes to exist in one. Most of the modern operating system supports threa

Implementation of API in Android
android apps 28-Jan-2018
Implementation of API in Android

An API is an interface used between the user and the server. There are two types of API’s used which offers a different mechanism for connecting and receiving data.

API (Application Programming Interface)
android apps 27-Jan-2018
API (Application Programming Interface)

An API is an interface used between the user and the server. There are two types of API’s used which offers the different mechanism for connecting and receiving data.

A brief introduction to SQLite and it's features
android apps 25-Jan-2018
A brief introduction to SQLite and it's features

SQLite is a relational database which implements a self-contained, serverless, zero- configurational, transactional database engine. It is a relationa

Triggers in SQLite
android apps 25-Jan-2018
Triggers in SQLite

Triggers Triggers in SQLite database are the database callback functions which are invoked or performed whenever a specified database event occurs. S

Transactions and Injections in SQLite
android apps 25-Jan-2018
Transactions and Injections in SQLite

Transactions A database is transactional if it has all the changes and queries to be Atomic, Constant, Isolated and Durable (ACID). SQLite implements

Datatypes in SQLite
android apps 25-Jan-2018
Datatypes in SQLite

Datatypes are an important aspect of any table created in the database. While specifying the correct datatype we can track each entry properly and avo

Difference between SQL and SQLite
android apps 25-Jan-2018
Difference between SQL and SQLite

The various difference SQL and SQLite database are - SQL  SQL is a structured query language which is used to query a database which is usually Relat

Coding conventions
android apps 17-Jan-2018
Coding conventions

Coding convention or coding standards are the specific set of guidelines defined for a specific programming language. These coding conventions are use

Exception Handling
android apps 17-Jan-2018
Exception Handling

Exception handling is a process by which an unwanted error can be captured with the help of various statements. An exception can break the normal flow

Generic Naming Convention
android apps 17-Jan-2018
Generic Naming Convention

Naming convention is a set of rules which are used to define different identifiers such as constants, variables, functions, etc. in a programming language.