|
|
-
|
|
This is the first workshop in F#
In this we will learn some basic F# stuffs
Welcome 2 F# program
Declaring variables
Explicit Type Conversion
Reading value from console at runtime
Declaring Comments
Addition of two numbers
Addition of two numbers using Functions
A simple calculato......
|
|
-
|
|
This function is almost identical to DateTimeFromParts function except that it returns a datetime2 value. In addition to this, it also needs a precision value.
Syntax: DateTime2FromParts (year,month,day,hour,minute,seconds,fractions,precision)
Example 1: Simple example
Select DateTime2FromPar......
|
|
-
|
|
It is almost similar to the DateFromParts function with the change that it returns a Date time component. We have already seen this function in dotnet. Out of the various overloaded constructor of DateTime struct, we have
public DateTime(int year, int month, int day, int hour, int minute, int seco......
|
|
-
|
|
In this article we will look into how we can make a custom SSIS transformation component.The custom component is a simple
email validator that will read the emails from some source and will let us know if it is a valid email or not.
I am using C# as the language of choice.
Step 1:
To begin wit......
|
|
-
|
|
Well,the function states that build a date given the various parts like year, month and day. We have already seen this function in dotnet. Out of the various overloaded constructor of DateTime struct, we have
public DateTime(int year, int month, int day);
So if we write
Console.WriteLine(new Dat......
|
|
-
|
|
As the name suggests, it concatenates strings. In earlier versions of Sql Server we have the option of performing concatenation using the '+' symbol. But the overhead was that if the types that are participating in the concatenation are not of varchar type, then we had to do explicit conversion else......
|
|
-
|
|
We are already familiar with IF..Else statement which executes after evaluating a Boolean value. Now from Sql 11 Denali (SQL Server 2012) CTP 3, we have the function in place-
IIF ().
Purpose:Returns a value as per the specified Boolean condition.
Syntax : IIF([Condition],[True Value],[ False Va......
|
|
-
|
|
Well dot net developers don't need any new introduction to it but for those who are encountering this function for the first time the answer is that it accepts a string datatype and converts to the requested datatype.
Purpose: It accepts a string datatype and converts to the requested datatype
S......
|
|
-
|
|
Today we will make a cascading dropdown application of Country, State and City in JQuery
N.B.~ We are using JQuery 1.6.1
Let us first make the entities.We will have 3 entities here viz, Country, State and City
Country Entity(Country.cs)
///
/// Summary description for Country
///
publ......
|
|
-
|
|
I am learning JQuery and today I did a small program with JQuery Ajax
I am using JQuery 1.6.1
The application is very simple. It has a TextBox, a Button and a Label control. Once the user enters something in the textbox control and click on the Button control, then the request will go to the......
|
|