
Search In
While doing updation or insertion you can select or insert values based on case selection in SQL
For doing that will provide a better way to get filtered data updated or inserted
ALTER PROC [dbo].[uspGetNudgesDetails]
@AccessToken VARCHAR(50),
@Be
Combinators are used to define the relationship between the selectors.
There are four different combinators in CSS3:
descendant selector (space)
child selector (>)
adjacent sibling selector (+)
general sibling selector (~)
Descendan
The concept of lambda expression was introduced after coming the PHP version 5.3. We use generally any expression to make code cleaner and intuitive. and lambda expression helps to perform the same concept.
Lambdas (Anonymous functions) are
A block is a chunk of code that we put inside do..end or {}. You can use any of the both ways. But multiline block (do..end) is preferred over inline({}) block.
Example of block:
multiline style#
["red", "green", "yellow"].each do |color|
In Sql Server while writing queries sometimes we need to the data from multiple tables or you can say that output of one query becomes input to another one.
In this case we will write the nested queries that will get data from the other table a
Uploading a file in rails through Paperclip
As we know these days almost all the applications have the requirement to upload files to the application then be it an image , a video or any other file. I am writing this blog to share with you all
find method: The find method is used to find the particular object that matches with the parameter supplied to it.
article = Article.find(11) #It is used to find the article whose primary key is 11.
# => #<Article id: 11, name: "Rahul"&
There are many types of documents which are utilized at the time of any software testing. These testing documents are normally created both the time ie ahead of software testing and throughout the software testing. These testing documents are very us
To know the difference between HTML & XML, first of all we need to know what is HTML and XML.
What is HTML :- HTML(Hyper Text Markup Language ) is a markup language used for describing web pages.
What is XML :- X
Combobox control is like a dropdown control which contains the list of items. By default it takes no value. There is a property itemsSource with which we bind the items.
To bind combobox with the XML file,we will right click on the project and add a
