Data Access blog

(this blog is now in suspended animation - please update your bookmarks!)

ADO.Net

Posts
  • Data Access blog

    Quick update re: Data Access blog.

    • 2 Comments
    We're putting this blog (Data Access blog) into suspended animation. That doesn't mean we will stop blogging about ADO.NET and data access stuff, or that we'll take down published posts or comments here - it's just means we'll carry on blogging about...
  • Data Access blog

    ADO.NET and SQL Server Everywhere

    • 6 Comments
    Steve Lasker has posted a screencast / video over on Channel 9 providing an overview on the various ADO.NET programming options available for SQL Server Everywhere, including an updateable resultset (SqlCeResultSet). While on the subject, check out...
  • Data Access blog

    What I Wish Developers Knew About 'x' in / for SQL Server 2005 (webcasts)

    • 1 Comments
    Database Journal has a good list of some upcoming SQL Server related live webcasts scheduled for July (on MSDN and TechNet): Some that should be of interest for developers using ADO.NET: What I Wish Developers Knew About Writing Queries in SQL...
  • Data Access blog

    ADO.NET vNext - feedback so far

    • 9 Comments
    Since announcing our ADO.NET vNext plans at TechEd last week, the team has been on the lookout for your feedback on where we heading with the next release. This post is a round up of some of the comments / feedback we've heard. It's certainly not all...
  • Data Access blog

    ADO.NET vNext screencast

    • 28 Comments
    Hi - I'm Shyam Pather, Development Lead on the ADO.NET vNext team. I’m incredibly excited to share some demos of ADO.NET vNext in action. By now, many of you may have read the whitepapers and blog entries describing the new features. In this pair of...
  • Data Access blog

    ADO.NET vNext: The Entity Framework, LINQ and more

    • 24 Comments
    Once you are done with shipping large products such as SQL Server 2005 and Visual Studio 2005 you’d expect to have a quiet time for a while, slow down a bit, that kind of stuff… Turns out that it wasn’t the case this time. Right after SQL Server 2005...
  • Data Access blog

    Data Access with Visual Basic 2005 (Webcast)

    • 3 Comments
    Register to watch this : MSDN Webcast: Data Access with Visual Basic 2005 (Level 200) Start Time: Wednesday, April 12, 2006 9:00 AM (GMT-08:00) Pacific Time (US & Canada) End Time: Wednesday, April 12, 2006 10:00 AM (GMT-08:00) Pacific...
  • Data Access blog

    We love customers like David Hayden!

    • 4 Comments
    We love customers like David Hayden ! David has been spending time at the MSDN Forums (in particular the .NET Framework Data Access forum ) helping out those who've got stuck and blogging a bunch of ADO.NET 2.0 stuff. Here's a list of David's helpful...
  • Data Access blog

    ADO.NET Versions and Indexing

    Julia Lerman over at DevSource posted this quick article: "Someone asked me about ADO.NET indexing which encouraged me to write about some of the amazing performance tests I have done comparing VS2003 and VS2005's DataTable indexing."
  • Data Access blog

    Developers! - Express contest - win $10K

    A new worldwide contest for developers has been launched by the folks at Visual Studio Express and SQL Server Express. Here's how it goes: you think of something cool using Visual Studio Express and SQL Server Express . It could be desktop app...
  • Data Access blog

    10 Mistakes Developers Make With Databases

    • 1 Comments
    A new article published at Developer.com is worth checking out: Ten of the Biggest Mistakes Developers Make With Databases .
  • Data Access blog

    Data Binding in ASP.NET 2.0

    Jesse Liberty has written up a good article showing how to bind data into ASP.NET control over at O'Reilly's brand new ASP.NET 2.0 Training Center site: "...in the next version of the .NET Framework a great deal of the ADO.NET object model has been...
  • Data Access blog

    A ConnectionScope class. [Alazel Acheson]

    • 20 Comments
    I’ve heard a few comments from people who would like an easier way to manage connection lifetime & use across multiple methods. Most often, the problem is due to using a TransactionScope at an higher level, but opening and closing connections inside...
  • Data Access blog

    Getting Schema in ADO.Net 2.0

    Carl Perry, a Program Manager from our ADO .Net team has blogged about how to use and extend the new MetaData Schema functionality in ADO .Net 2.0. The blog is here: http://blogs.msdn.com/cperry/archive/2006/02/06/526323.aspx This is one blog that...
  • Data Access blog

    Shawn Wildermuth on Decomposing ADO.NET

    The .NET Rocks! Show had Shawn Wilderman as their guest last week. Shawn is the Microsoft C# MVP who runs ADO.NET Guy : "Carl and Richard interview Shawn Wildermuth about ADO.NET. He's down on datasources as a one-size-fits-all solution to data...
  • Data Access blog

    Impersonation inside SQLCLR Stored Procedure [Jian Zeng]

    • 20 Comments
    In SQL Server 2005, we now have the ability to write managed (or CLR) code inside a Stored Procedure. This implies that you now have the capability to connect to a remote or the local SQL Server with ADO.NET via the System.Data assembly. When doing so...
  • Data Access blog

    ADO.Net 2.0: Relative paths in ConnectionString [Sushil Chordia]

    • 16 Comments
    In SqlClient Managed Provider, there has always existed (right from ADO.Net 1.0 days) a keyword in the connection string called AttachDbFileName. The user could have the location of the database file assigned to this keyword in the connection string and...
  • Data Access blog

    SqlDependency changes for RTM [Sushil Chordia]

    • 32 Comments
    As mentioned in my previous blog , SqlDependency is a new feature in .Net framework 2.0, which provide a mechanism to notify an app when a cache is invalidated. We got enough feedback from customers in Beta 2 with regards ease of deployment (some issues...
  • Data Access blog

    Getting the MARS Sample working in the June CTP

    • 2 Comments
    Multiple Active Result Sets ( MARS ) is a cool new feature in SQL Server 2005 which allows you to start and begin processing another query while you are in the middle of processing a different query on the same connection. Unfortunately the MARS sample...
  • Data Access blog

    Exceptions in ADO.Net 2.0 [Siraj Lala]

    • 10 Comments
    I’d like to briefly talk about some of the work we have done in ADO.NET 2.0, for improvement of Errors and Exception usage. In ADO.NET 1.1, several error messages were generic and didn’t have enough detail to make them actionable. An example of this is...
  • Data Access blog

    Does ADO.NET update batching really do something?

    • 23 Comments
    I’ve gotten this same question several times in the last few weeks, so I thought it would be a good idea to put together some details on the topic. Update batching is a new ADO.NET 2.0 feature that, when enabled, introduces an optimization to the process...
  • Data Access blog

    .Net Framework 2005 (aka Whidbey) Beta2 Shipped! [Carl Perry]

    • 13 Comments
    At long last we’ve completed and signed-off on Whidbey Beta 2!!!!! It’s been quite a long time since we started working on Beta 2; once this hits the web it will have been almost 9 months of bug fixing, security reviews, feature completion, and scrambling...
  • Data Access blog

    Primer to ConnectionStringBuilder in ADO.Net v2.0 [Sushil Chordia]

    • 19 Comments
    We had got good amount of feedback from developers in 1.0 and 1.1 versions for need to have a Connection-String Builder. Consider that you want to develop an application that needs to dynamically build a connection string depending on the Data Source...
  • Data Access blog

    Unification of System.Data.SqlClient and System.Data.SqlServer [Pablo Castro]

    • 33 Comments
    Many of us would like to have a space to write about the stuff we do, publish open issues for debate, and in general have a handy, informal point of contact with our developer community. Most of us don’t have the time to actually sign up for a blog and...
Page 1 of 1 (24 items)