Came across this handy convertor tool - http://www.csgnetwork.com/memconv.html
What is the difference between ADO and ADO.Net?
What are the different categories of classes in ADO.Net?
What is the difference between clone() and copy() method of a Dataset?
What is connection pooling?
What is a diffgram?
What is CommandBuilder?
What is the difference between Optimistic and Pessimistic locking?
What are various components of a DataTable?
What are the different RowState transitions in DataRow?
What are the different DataRow versions?
How do determine the current version of a DataRow?
What is a DataReader?
How to iterate through rows in a DataReader?
What are the advanatages/disadvantages of using a DataReader?
How to check if a DataReader is closed or open?
What is a Dataset?
How to Read/Write XML using a Dataset?
What is the use of AcceptChanges() method of Dataset?
What is the use of Update() method of Dataset?
What is a DataAdapter?
How to load the generated DataSet using DataAdapter?
How can we use a Stored Procedure in ADO.Net?
What is Dataview? What is it used for?
How to perform a transaction cycle in ADO.Net?
Below are some of the most commonly asked questios in C#:
Q. What is the difference between a const and readonly in C#?
A. Refer: Const vs Readonly
Q. What is the difference between out and ref keywords?
A. Refer: Difference between out and ref parameters
Q. What is the difference between an Array & ArrayList?
A. Refer: Difference between an Array and ArrayList
Q. Which namespace is the base class for all .Net Class Libraries?
A. System.Object
Q. What is boxing and unboxing?
A. Refer to: Boxing and Unboxing in C#
Q. What is the difference between a thread and a process?
A. Refer: Thread vs Process
Q.What are the different access modifiers in C#?
A. Below are the available access modifiers and their scope details.
a. Public: Access not limited.
b. Protected: Access limited to the containing class or types derived from the containing class.
c. Internal: Access limited to current project.
d. Protected Internal: Access limited to the project or types derived from the containing class.
e. Private: Access limited to the containing type.
Q. Strings are immutable, what does it mean?
A. Strings are immutable, it means if strings are once created, they cannot be changed. Although some string operation methods seem to modify string content, but .Net framework creates a new string with the new value. The original string remains unchanged.
Refer: MSDN for more details.
Q. What are User-defined types? How to create them?
Q. What are Partial Classes?
A. Refer to: Partial Class in .Net
Q. What is the difference between Finalize & Dispose?
A. Refer: Finalize vs Dispose
Q. What is a ternary operator?
A. Refer to: Ternary Operator
Q. What is the difference between CopyTo() and Clone() methods in System.Array?
A. Clone() creates another array with the exact copy as original array. It returns an exact length array. CopyTo() copies the elements from the original array to an another existing array starting at the specified existing array index.
Q. What is a Windows Service? What are the steps to create it?
A. Windows Service is an executable that runs at the background in its own session and performs specific functions.
Refer this link for: Steps to Creating a Windows Service
Q. What are generics?
Q. What is an Event? How to raise it?
Q. What is a delegate?
A. Refer to: Delegates in C#
Q. What is a multicast delegate?
Q. What is Type Forwarding?
Q. What is the difference between a Struct and a Class?
A. Refer: Struct vs Class
Q. What is the difference between method overloading and overriding?
A. Refer: Overloading vs Overriding
Q. What is the difference between an Abstract Class and Interface?
A. Refer: Abstract Class vs Interface
Q. What are sealed classes in c#?
A. Sealed classes are used to restrict inheritance. In C#, the sealed modifier is used to make the class as sealed. No other class can be derived using the sealed class.
A compile-time error occurs if the sealed class is specified as the base class of a class.
// Sealed class
sealed class ClassA
{
//define data members & methods.
}
Read on Sealed Methods in this nice article: Sealed Methods
Q. What are indexers? How they are different from properties?
A. Refer to: Indexers in c#
Q. Can abstract class have non-abstract methods?
A. Yes. The abstract class can contain abstract and non-abstract methods.
Q. What is inheritance?
A. Refer: Inheritance in C#
Q. What is polymorphism?
A. Refer: Polymorphism in C#
Q. What is the difference between typed and instance constructor?
A. Refer: Difference between Typed and Instance Constructor
Q. How to create and send HTML E-Mail Message?
A. The class used to create an E-Mails in .net is MailMessage. It is
contained in System.Web.Mail namespace. Check the below code to create
and send HTML emails using c#.
MailMessage testMail = new MailMessage();
testMail.To = "receiver@test.com";
testMail.From = "sender@test.com";
testMail.Subject = "Hello World!";
testMail.BodyFormat = MailFormat.Text;
testMail.Body = "Check out the attachment!";
testMail.Attachments.Add(new MailAttachment("@c:\attachement.zip"));
SmtpMail.Send(testMail);
Q. What are the types of collections available in .net?
A. Refer: Types of collections in .net
Q. What are Sequential Lists? What are its types?
A. Refer: Sequential Lists in C#
Q. What is Serialization?
Q. How to Serialize and Deserialize an object (using Binary & XML Formatter)?
Q. What are different types of serialization? Which one to choose & when?
Q. What are different types of attributes used in serialization using Binary Formatter?
Q. What are different types of attributes used in serialization using XML Formatter?
Q. What are the different Serialization Events?
Q. What is an Application Domain?
Q. How to load/unload assemblies in an Application Domain?
Q. What is an Event Log? Q. How to Create/Delete an Event Log? Q. How to Read/Write from an Event Log?
A. Refer to: Managing EventLogs in Event Viewer using .Net
Q. What is debugging? What are various debugging techniques that help debugging an issue quickly?
A. Refer: Debugging and its techniques
Q. What is MSMQ? How to create queues? How can applications send and receive messages from queues?
A. Refer: Message Queuing - MSMQ
Q. What are different logical and physical layers in n-tier architectures?
A. Logical Layers:
1. UI - This layer is a presentation layer with which the client interacts.
2. MT - This is a Middle-Tier layer which contains the main code & business functionality.
3. DB - This is a database layer that contains the actual data.
Physical Layers:
1. UI - This could be either a browser (web application), windows client (windows application), dos windows (console based application) or any other interface with which users can interact with.
2. MT - This could be DLLs/Libraries, WebServices, WCF etc.
3. DB - This could be SQL Server, Oracle or some other database.
Linq to XML is the modern approach to programming with XML using any .NET Languages. It provides an in-memory XML programming interface that allows querying XML data using SQL-like queries thereby making developers life easy. It also reduces the code size as compared to the old approach.
In the old approach, one had to start with XMLDocument. Using the XMLDocument, create root XMLElement followed by using helper methods to append or create child elements which involved lot of code writing. Also to read/query XMLDocuments, one had to write XPATH queries to get the required data, the validation of which did not happened at compile time.
Using Linq to XML, life has become very easy with the introduction of simple-to-use XML tree creation objects. Also to get data from XDocument, one just have to use simple SQL-like queries having all the required methods to filter & get the required match data. The code size has reduced drastically, more readable and easy to understand.
In .Net 3.5 a new namespace called System.Xml.Linq contains all the classes for creating XML documents in any required format. Some of its members are as listed:
XAttribute – Represents an XML attribute.
XComment – Represents an XML comment.
XDeclaration - Represents an XML declaration.
XDocument - Represents an XML document.
XElement - Represents an XML element.
XName - Represents the name of the XElement or XAttribute
XNamespace - Represents an XML namespace.
XNode - Represents any XML node within an XML document(e.g.element,comment)
Lets see how to create an entire XML Document tree using a single statement.
XDocument doc =
new XDocument(
new XElement("Customer",
new XElement("FirstName", "Atul"),
new XElement("LastName", "Ashpalia")));
doc.save(@"d:\sample.xml");
File output:
<customer>
<FirstName>Atul</FirstName>
<LastName>Ashpalia</LastName>
</customer>
Now lets load this XML document in XDocument object from sample.xml file. Then retrieve the value of the FirstName and print it.
Note: We can also load the XML Document from a stream.
Code:
// Load from file.
XDocument customer = XDocument.Load(@"d:\sample.xml");
// Query the data and print the FirstName
var q = from c in customer
where c.Element("FirstName")
select c;
foreach (string name in q)
Console.WriteLine("First Name = {0}", name);
As seen above, the code to create XML Document and to query it looks much more simplified and easy compared to what the old approach had to offer us. Enjoy coding.
SQL Server Command List
Posted by Techie Cocktail | 10:20 AM | Database TitBits, FAQs | 0 comments »Below are some useful TitBits when working with SQL Server. I would append this list quite often with more tips in future.
Please feel free to send in your tips to be published that would be helpful to others. You can post them on the comments part of this article below.
SQL Commands:
1. How can i get the local SQL Server Name?
SELECT @@SERVERNAME
2. How to get the list of .mdf (data files) & .ldf (log files) files of all databases and their details for an SQL Server?
SELECT * FROM SYS.MASTER_FILES
3. How to get the database id for a given database?
SELECT DB_ID('<Database_Name>')
4. How to check if a particular table exists in a database?
SELECT * FROM <Database_Name>..sysobjects WHERE NAME LIKE '<Table_Name>'
5. How to get only data file details of a particular database?
EXEC ('DBCC SHOWFILESTATS')
Note: Run this command by selecting the database for whose datafile details you want to view.
6. How to get the LogSpace details of all the database in a SQLServer?
EXEC('DBCC SQLPERF (Logspace)')
7. How to rename a database?
sp_renamedb 'oldname' , 'newname'
If the database is being used by someone, sp_renamedb will not work. In that case,
- first get the db to a single user mode using sp_dboptions.
- use sp_renamedb to rename the db.
- use sp_dboptions to change the db to the multi user mode.
8. How do i get information about the remote server?
sp_helpserver [server_name]
9. How can i see the text of a procedure, trigger, view, default, rule, integrity check constraint?
sp_helptext [object_name]
10. How can i get details on any SQL Server object (for eg. table)?
sp_help [table_name/ojbect_name]
11. How do i get the list of processes that currently hold locks?
sp_lock spid1 [,spid2] (you can check for multiple spid's)
where spid1, spid2 - is the SQL Server process ID number of a lock.
12. How can i get a SPID information about all SQL Server users and processes?
sp_who or sp_who2
13. How can i check the machine hard drive space details?
EXEC xp_fixeddrives
14. How can i get list of users in the current database?
EXEC sp_helpuser
15. How can i get the list of logins for each database?
EXEC sp_helplogins
16. How can i get the number of rows affected by the last statement in a stored proc?
SELECT @@ROWCOUNT
17. How do i get the space, index, row counts of a SQL Table?
EXEC sp_spaceused <table>
18. How do i get the list of stored procedures in a database?
SELECT [name] FROM sysobjects WHERE [type] = 'p'
19. How do i get the list of tables in a database?
SELECT [name] FROM sysobjects WHERE [type] = 'u'
20. How can i debug a stored procedure execution in a production environment?
Use SQL Profiler.
Lot of times we are unable to detect an issue in the code. Below function can do logging for you in a text file in your application path.
Checkout.
static private void WriteLogsToTextFile(string logStr)
{
try
{
if (ConfigurationSettings.AppSettings["beginLogging"].ToString().Equals("true"))
{
if (!File.Exists(AppDomain.CurrentDomain.BaseDirectory + "LogFile.txt"))
{
using (StreamWriter sw = File.CreateText(AppDomain.CurrentDomain.BaseDirectory + "LogFile.txt"))
{
sw.WriteLine(DateTime.Now.ToString() + ": " + logStr);
sw.Close();
}
}
else using (StreamWriter sw = File.AppendText(AppDomain.CurrentDomain.BaseDirectory + "LogFile.txt"))
{
sw.WriteLine(DateTime.Now.ToString() + ": " + logStr);
sw.Close();
}
}
}
catch (Exception ex)
{
//display error.
}
}
Did you ever want to split a comma/space/<any character> delimited long string?
In .Net we have the in-built split function available to perform this task.
Check this below function in SQL Server:
CREATE FUNCTION dbo.splitString(
@sInputList VARCHAR(8000) -- List of delimited items
, @sDelimiter VARCHAR(8000) = ' ' -- delimiter that separates items. Space in this case.
) RETURNS @List TABLE (item VARCHAR(8000))
BEGIN
DECLARE @sItem VARCHAR(8000)
WHILE CHARINDEX(@sDelimiter,@sInputList,0) <> 0
BEGIN
SELECT @sItem=RTRIM(LTRIM(SUBSTRING(@sInputList,1,CHARINDEX(@sDelimiter,@sInputList,0)-1))), @sInputList=RTRIM(LTRIM(SUBSTRING(@sInputList,CHARINDEX(@sDelimiter,@sInputList,0)+LEN(@sDelimiter),LEN(@sInputList))))
IF LEN(@sItem) > 0
INSERT INTO @List SELECT @sItem
END
IF LEN(@sInputList) > 0
INSERT INTO @List SELECT @sInputList -- Put the last item in
RETURN
END
GO
-- This is how you would test
select * from splitString('This is a split function', ' ')
-- Output
This
is
a
split
function
References: http://searchwindevelopment.techtarget.com/tip/0,289483,sid8_gci932171,00.html
Object initializer & Collection initializer in C# 3.0
Posted by Techie Cocktail | 7:08 AM | C-Sharp | 0 comments »Another concise coding feature in C# 3.0. Let’s see it using user-defined class and other using one of the .Net Collections. This feature demonstrates a new way to initialize a class or a collection.
a. Initializing a User defined class
Lets pick up the employee class example as defined in my whitepaper Auto-Implemented properties in C# 3.0. As we have the class ready lets initialize the object of employee class.
Traditional Approach
employee emp = new employee();
emp.Name = "John";
emp.Designation = "Senior";
emp.GetSalary();
double Sal = emp.Salary;
New Approach
employee emp = new employee { Name = "John", Designation = "Senior" };
emp.GetSalary();
As in the new approach, line 1, you can initialize the employee members (properties) at the time of instantiation. You don’t need to write extra lines of code as done in the traditional approach.
b. Initializing a List Collection
List