Register for Visual Studio 2010 Beta Exams (.NET 4.0)

March 18, 2010 15:30 by Ryan Garaygay

Time for (free) Beta Exams again

Information can be found from here

http://blogs.technet.com/betaexams/archive/2010/03/17/register-for-visual-studio-2010-beta-exams.aspx

Register via http://register.prometric.com

For easier reference, exams available are listed below (along with PromoCode)

Exam 71-511, TS: Windows Applications Development with Microsoft .NET Framework 4 - 511BC
Exam 71-515, TS: Web Applications Development with Microsoft .NET Framework 4 - 515AA
Exam 70-513: TS: Windows Communication Foundation Development with Microsoft .NET Framework 4 - 513CD
Exam 70-516: TS: Accessing Data with Microsoft .NET Framework 4 - 516B1
Exam 70-518: Pro: Designing and Developing Windows Applications Using Microsoft .NET Framework 4 - 518PE
Exam 70-519: Pro: Designing and Developing Web Applications Using Microsoft .NET Framework 4 - 519ZS

And as always, word of advice, read and master the items in prep guide to increase your chances of passing the exams.

Good luck!


MCTS ADO.NET 3.5 Applications results out and passed

July 24, 2008 14:00 by Ryan Garaygay

A good way to start a day. Just got an email regarding another latest addition to my cert list. Microsoft Certified Technology Specialist : .NET Framework 3.5 ADO.NET Applications More...


Link: SQL Server 2008: new data types and .Net 2 with and without SP1

June 25, 2008 16:11 by Ryan Garaygay

Here's an interesting I came across in the recent Simple Talk Newsletter (by Red Gate Software).

It talks about issues with new SQL 2008 data types (date/time related) and it's effect on .NET 2.0 datetime data types when SP1 is installed or not. Something to be aware of and one of those times that you're glad you have a web rather than a desktop application. (you only have to install SP1 on the server(s))

SQL Server 2008 has introduced a few new data types, among others the new date types, like date, time, datatime2 and datetimespan. Because .Net 2 was released before SQL Server 2008 has introduced these data types, there are no classes that map to these new types in .Net 2.
But this has changed with .Net 2 SP1, which introduces the DateTimeOffset structure.

Read full article from the following link :SQL Server 2008: new data types and .Net 2 with and without SP1


ADO.NET Review: Multiple Select Queries in one SqlCommand

April 29, 2008 16:22 by Ryan Garaygay

If you perform multiple select queries inside your stored procedures I believe you actually return all of the result sets to the client. (except when you assign a value to a parameter like SELECT @myVar = [ColumnA] FROM Table1). This is something to be careful of since you might unnecessarily return results sets that you actually don't need to return.

But this behavior also has an advantage. Obviously, if you need to retrieve two result sets, there is no need to create two or more SqlCommand to retrieve them. I believe this is handled under the hood if you use SqlDataAdapter.Fill where the dataset being filled will result the sets as part of its tables collection. However in this example we will illustrate how it can be done using SqlDataReader using non other than Reader.NextResult() method.

This is something I don't see often (might not be the case for you) so without much further ado, here's a sample code that might explain better than words. More...


ADO.NET Review: Multiple Active Result Set (MARS)

April 26, 2008 09:33 by Ryan Garaygay

Quoting from the SQL Programmability and API Development Team Blog: Multiple Active Result Set or MARS is defined as

a new programming interface introduced in SQL Server 2005. It enables multiple result sets to exist at the same time for a given connection. To say it in a simple way, you can make a connection to server and then submit multiple requests to serve

To illustrate, More...


Issue with System.Transactions, SqlConnection and Timeout

April 13, 2008 16:55 by Ryan Garaygay

Just recently, a post was made in Microsoft Forums regarding a bug/behavior of Committable Transactions and SqlConnection timeout. The same issue is evident for TransactionScope which was posted in 2006. Good thing there is a fixMore...


Link: Entity Framework and ADO.NET Data Services will RTM with Visual Studio 2008 and .NET 3.5 Service Pack 1

April 12, 2008 00:06 by Ryan Garaygay

The ADO.NET Team has just announced this in their blog. There is no definite release date for SP1 yet though.

See the post from the following link: Entity Framework and ADO.NET Data Services will RTM with SP1