
Search In
ServletConfig
ServletConfig is use to initialize a servlet. Its scope is within the servlet i.e.,when servlet starts executing, ServletConfig object will be available until execution of servlet is completed. For a particular servlet, there is only o
Mobile Testing :
Mobile Devices everywhere in the market .Mobile devices have become the primary medium of
interaction for consumers as well as businesses worldwide, and mobile applications are driving these
interactions.In traditional market we c
Making a group by query in traditional database like MySQL,MySQL etc in quite easy but when its come to NoSQL like MongoDb we have to twist it a bit to get result we want :
There are two ways in which you can do group by in MongoDb :
a) Using group
There are lot of reason's to occur the bugs in software application but most important factor is human
factor.
Human being develops the software, so its natural that mistake would be happen in
code/application. No one can perfect so any one can m
Sometimes, when we are working on CMS like Joomla, Drupal etc, we have such requirements for which we need to build our own component. On that component, we can add our logics for development.
Here are some basic steps to create you own Joomla compo
Difference between user thread and daemon thread:
When we talk about multi-threaded programming then we talked about threads. And when we talk about threads, then the question comes the types of threads. So guys we mostly work on user threads and
Image split can be required by different android puzzle application where there is a need to divide the one complete picture into different pieces.
Here is the function that takes three argument one is the imageview that holds your complete image
Jquery is a powerful library and it is heart of web develepment. It includes different types of functions.
Today we are going to discuss function named autocomplete() which is useful to auto populate the suggestions as user types, filtering and sea
While making joins in SQL you can have parameters which are passed in your query for getting result
ALTER PROC [dbo].[uspGetNudgesDetails]
@AccessToken VARCHAR(50),
@BeaconID VARCHAR(50)=NULL,
@CompanyID BIGINT =0,
@TargetUserID BIGINT=0
AS
BEG
Sequences in SQL are used to create the auto generated values which are normally integers that follows a sequence.
CREATE SEQUENCE [schema.]sequence_name
[ AS datatype ]
[ START WITH value ]
[ INCREMENT BY value ]