<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>VSLive San Francisco Presentations</title><link>http://blogs.msdn.com/b/smartclientdata/archive/2006/02/01/522549.aspx</link><description>At VSLive I presented two sessions. One for Occasionally Connected Smart Clients and another on Advancements in Data Access. 
 
 The Occasionally Connected Smart Client session focused on what we’re working on post VS 2005. Some of which should be in</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>links for 2007-04-18 &amp;laquo; Inferis&amp;#8217; Mind Dump</title><link>http://blogs.msdn.com/b/smartclientdata/archive/2006/02/01/522549.aspx#2181422</link><pubDate>Thu, 19 Apr 2007 01:23:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2181422</guid><dc:creator>links for 2007-04-18 « Inferis’ Mind Dump</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blergh.wordpress.com/2007/04/19/links-for-2007-04-18/"&gt;http://blergh.wordpress.com/2007/04/19/links-for-2007-04-18/&lt;/a&gt;&lt;/p&gt;
&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=2181422" width="1" height="1"&gt;</description></item><item><title>re: VSLive San Francisco Presentations</title><link>http://blogs.msdn.com/b/smartclientdata/archive/2006/02/01/522549.aspx#537119</link><pubDate>Wed, 22 Feb 2006 21:47:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:537119</guid><dc:creator>Steve Lasker -MS</dc:creator><description>SQL Mobile: &lt;BR&gt;We’re still in the process of working out the license restrictions. &amp;nbsp;We don’t have a specific timeframe just yet, but I am hopeful we won’t have to wait ‘till Orcas. &amp;nbsp;We don’t have any documentation beyond the Tablet PC scenarios as this is something we’re still working on. &amp;nbsp;The main concern is related to the unique APIs in SQL Mobile. &amp;nbsp;Will the unique APIs in the ADO.net stack for SQL Mobile block users from moving up to SQL Server. &amp;nbsp;Basically, we really want to avoid repeating the issues related to Access/Jet and FoxPro applications. &amp;nbsp;Upgrading these applications has been very difficult and confusing for developers. &amp;nbsp; &lt;BR&gt;&lt;BR&gt;We do believe that SQL Mobile will not have the same challenges as SQL Mobile has a strict subset of the datatypes and TSQL language. &amp;nbsp;This wasn’t the case for Jet and FoxPro. &amp;nbsp;However, the ADO.net stack for SQL Mobile does have some unique APIs that don’t work against SQL Server. &amp;nbsp;For instance the &lt;A href="http://msdn2.microsoft.com/en-us/library/system.data.sqlserverce.sqlceresultset.aspx"&gt;SqlCeResultSet&lt;/A&gt; is a data bindable cursor that works great for local databases, but would be extremely problematic with a multi-user database such as SQL Server. &amp;nbsp;If SQL Mobile was a 100% strict subset, we’d have changed the licensing already. &amp;nbsp;We do believe there are features developers do want from a local, in-proc embedded database; such as the SqlCeResultSet so we’re not quite ready to just remove these APIs and call it a day. &amp;nbsp;It would be great to get feedback from developers who’ve used SqlMobile what they think about constraining SQL Mobile desktop scenarios to a strict subset model. &lt;BR&gt;&lt;BR&gt;I have been trying to get an article written on the Evolving Application Model that outlines how starting with a local database isn’t a bad thing. &amp;nbsp;Actually starting and keeping a local database is a good thing. &amp;nbsp;It increases performance for the user, improves scalability as the central servers have fewer operations to perform, and improves usability for the user as it’s the basis for enabling offline scenarios. &amp;nbsp;The model we’re discussing is the application keeps their local database and adds some new synchronization APIs to keep the local database in sync with the server. &amp;nbsp;This is the concept I presented at VSLive and the direction we’re heading. &amp;nbsp;In the meantime, buy more TabletPCs and things will be much simpler&amp;nbsp;:) &lt;BR&gt;&lt;BR&gt;Sync Adapters: &lt;BR&gt;These are just beginning to take shape. &amp;nbsp;We’re teamed with the SQL Replication team to deliver these in Visual Studio Orcas. &amp;nbsp;The SQL Replication team is the same team that delivers Merge Replication so there’s a lot of experience here that we’re tapping into. &amp;nbsp;Once Orcas development begins we’ll have CTP’s out that you’ll be able to play with. &amp;nbsp;For now, we’ve been using &lt;A href="http://msdn2.microsoft.com/en-us/library/ms172917.aspx"&gt;RDA &lt;/A&gt;under the covers to demonstrate the scenarios we’re shooting for. &amp;nbsp;RDA is a great technology as its very developer focused and the server is unaware it’s being synchronized with. &amp;nbsp;Unfortunately, RDA is missing two key components: &lt;BR&gt;--Incremental Changes – Once the initial subscription has been created, there’s no way to bring changes on the server down to the client without reinitializing them. &amp;nbsp;This includes inserts, updates and deletes. &amp;nbsp; &lt;BR&gt;--Business Logic – RDA is very internet friendly as it uses HTTP as its transport from client to the server, however there are no hooks to validate data as it travels back to the server, or extensibility points to get data from the server using sprocs or other code paths such as web services. &lt;BR&gt;We do plan to enable any back end database. &amp;nbsp;We know that all of you would use SQL Server if you had a choice, , but we also know that you don’t always have a choice. &amp;nbsp;You’ll have an easier experience with SQL Server as we have more knowledge about the product, but you will be able to configure the Sync APIs to work against any back end database. &amp;nbsp;It will essentially be an extension of the DataAdapter model, so just as the DataAdapter has a lot of flexibility in the Select, Insert, Update and DeleteCommands, so will the two additional commands, SelectChanges, SelectDeleted. &lt;BR&gt;&lt;BR&gt;The blue circle is the mapping layer. &amp;nbsp;Essentially we’ll still be storing relational information as it’s the most efficient way to store data. &amp;nbsp;The mapping layer that enables users to map relational objects from the database can be used to map objects back to relational. &amp;nbsp;I don’t think we’ll get this done in Orcas. &amp;nbsp;For Orcas we plan to focus on the relational layer. &amp;nbsp;Once this is done, and we get more of our mapping technologies done we’ll be able to leverage it for Object Synching. &lt;BR&gt;&lt;BR&gt;Steve &lt;BR&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=537119" width="1" height="1"&gt;</description></item><item><title>re: VSLive San Francisco Presentations</title><link>http://blogs.msdn.com/b/smartclientdata/archive/2006/02/01/522549.aspx#536211</link><pubDate>Tue, 21 Feb 2006 21:12:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:536211</guid><dc:creator>Allen</dc:creator><description>I just got done looking at your power point on the occasionally connected smart clients presentation. &amp;nbsp;There are some things that I'm excited about and I just want to make sure that what I'm seeing will be truly happening. &lt;BR&gt;&lt;BR&gt;SQL Mobile: &lt;BR&gt;I noticed that it has been or will be positioned to work on a laptop and desktop. &lt;BR&gt;(1) When will the Tablet Pc restriction be removed? &lt;BR&gt;(2) Is there any documentation on any Microsoft sites that discuss this? &lt;BR&gt;&lt;BR&gt;SyncAdapters: &lt;BR&gt;(1) When will this be available? &lt;BR&gt;(2) Will it work with any back end? &lt;BR&gt;&lt;BR&gt;The slide on Synching: Relational or Objects. &amp;nbsp;What is the blue circle with the two small blue circles representing? &lt;BR&gt;&lt;BR&gt;This stuff looks great!! &amp;nbsp;Please just don't tell me that these won't be available until the ORCA version of .Net. &amp;nbsp;I've wanted to use SQL Mobile because it looks like the perfect solution for our application but our users have laptops and desktops and I don't see the company buying tablets any time soon. &amp;nbsp; &lt;BR&gt;&lt;BR&gt;I saw your presentation on this subject at PDC last year and I'm happy to see the changes that you are making from just six months ago. &lt;BR&gt;&lt;BR&gt;Thanks, &lt;BR&gt;Allen&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=536211" width="1" height="1"&gt;</description></item><item><title>VSLiv Advancements in Data Access</title><link>http://blogs.msdn.com/b/smartclientdata/archive/2006/02/01/522549.aspx#532593</link><pubDate>Wed, 15 Feb 2006 19:45:10 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:532593</guid><dc:creator>The Problem Solver</dc:creator><description>Steve Lasker, the one from the Microsoft Visual Basic team, has posted the presentations from VSLive...&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=532593" width="1" height="1"&gt;</description></item><item><title>re: VSLive San Francisco Presentations</title><link>http://blogs.msdn.com/b/smartclientdata/archive/2006/02/01/522549.aspx#530159</link><pubDate>Sat, 11 Feb 2006 17:41:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:530159</guid><dc:creator>Nusrat</dc:creator><description>Do you have an updated source code for the occasionally connected smart client demo that you gave at the PDC 05?&lt;br&gt;&lt;br&gt;So basically to help me understand you are using sql mobile edition as the local database on a desktop and the application does everything against this database.&lt;br&gt;&lt;br&gt;This local database in turn has a responsibility to keep itself synced up with the server database.&lt;br&gt;&lt;br&gt;Is this a correct assumption?&lt;br&gt;&lt;br&gt;my email is wanderernxa@comcast.net&lt;br&gt;&lt;br&gt;Thanks&lt;br&gt;Nuz&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=530159" width="1" height="1"&gt;</description></item><item><title>re: VSLive San Francisco Presentations</title><link>http://blogs.msdn.com/b/smartclientdata/archive/2006/02/01/522549.aspx#529143</link><pubDate>Fri, 10 Feb 2006 06:41:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:529143</guid><dc:creator>SmartClientData</dc:creator><description>Hi Frank,&lt;br /&gt;Glad you enjoyed it. &amp;nbsp;There's a lot of cool stuff, focused on end user scenarios that we're working on. &amp;nbsp;So, for Occasionally Connected stuff, this is the place, or you can check out my new blog at: &lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/SteveLasker/"&gt;http://blogs.msdn.com/SteveLasker/&lt;/a&gt;&lt;br /&gt;Nothing there yet, but I'll get some stuff up soon.&lt;br /&gt;Thanks&lt;br /&gt;Steve&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=529143" width="1" height="1"&gt;</description></item><item><title>re: VSLive San Francisco Presentations</title><link>http://blogs.msdn.com/b/smartclientdata/archive/2006/02/01/522549.aspx#526514</link><pubDate>Tue, 07 Feb 2006 14:55:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:526514</guid><dc:creator>Frank Botnevik</dc:creator><description>Watched the VSLive webcast on Occasionally Connected... This really rocks! Is there more info floating around that you are aware of?&lt;br /&gt;&lt;br /&gt;How do I stay current on the developments in this area?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Frank&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=526514" width="1" height="1"&gt;</description></item></channel></rss>