<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: Screencast: Stored Procedures with LightSpeed</title> <atom:link href="http://www.mindscape.co.nz/blog/index.php/2009/01/25/screencast-stored-procedures-with-lightspeed/feed/" rel="self" type="application/rss+xml" /><link>http://www.mindscape.co.nz/blog/index.php/2009/01/25/screencast-stored-procedures-with-lightspeed/</link> <description>The official blog of Mindscape</description> <lastBuildDate>Thu, 09 Sep 2010 22:49:44 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <item><title>By: nefajciar</title><link>http://www.mindscape.co.nz/blog/index.php/2009/01/25/screencast-stored-procedures-with-lightspeed/comment-page-1/#comment-28743</link> <dc:creator>nefajciar</dc:creator> <pubDate>Thu, 29 Jan 2009 18:03:46 +0000</pubDate> <guid
isPermaLink="false">http://www.mindscape.co.nz/blog/?p=419#comment-28743</guid> <description>This is GREAT Ivan, because PostgreSQL allows you to write SPs (ok ok functions) in your prefered language, not only in SQL. So their support is very welcomed (Postgre 8.3 just rocks!)Thank you very much</description> <content:encoded><![CDATA[<p>This is GREAT Ivan, because PostgreSQL allows you to write SPs (ok ok functions) in your prefered language, not only in SQL. So their support is very welcomed (Postgre 8.3 just rocks!)</p><p>Thank you very much</p> ]]></content:encoded> </item> <item><title>By: Ivan Towlson</title><link>http://www.mindscape.co.nz/blog/index.php/2009/01/25/screencast-stored-procedures-with-lightspeed/comment-page-1/#comment-28734</link> <dc:creator>Ivan Towlson</dc:creator> <pubDate>Thu, 29 Jan 2009 04:27:30 +0000</pubDate> <guid
isPermaLink="false">http://www.mindscape.co.nz/blog/?p=419#comment-28734</guid> <description>I have added runtime support for PostgreSQL functions (returning SETOF type) and it will be in nightly builds dated 30 Jan 2009 and above.  We will look at designer support but this may have to wait until after 2.2.</description> <content:encoded><![CDATA[<p>I have added runtime support for PostgreSQL functions (returning SETOF type) and it will be in nightly builds dated 30 Jan 2009 and above.  We will look at designer support but this may have to wait until after 2.2.</p> ]]></content:encoded> </item> <item><title>By: Ivan Towlson</title><link>http://www.mindscape.co.nz/blog/index.php/2009/01/25/screencast-stored-procedures-with-lightspeed/comment-page-1/#comment-28677</link> <dc:creator>Ivan Towlson</dc:creator> <pubDate>Tue, 27 Jan 2009 20:54:42 +0000</pubDate> <guid
isPermaLink="false">http://www.mindscape.co.nz/blog/?p=419#comment-28677</guid> <description>Hello Nefajciar,PostgreSQL doesn&#039;t have stored procedures but I understand that PostgreSQL functions can be used in the same way as sprocs.  We are looking into supporting PostgreSQL functions and we will see if we can get this into 2.2 but no promises!No, we will not be adding a naming prefix to stored procedures.  Application code should not care whether the GetContributions method resolves down to a table query or a stored procedure.  You can of course adopt such a naming convention yourself by editing the method names in the designer, but we would recommend against this.</description> <content:encoded><![CDATA[<p>Hello Nefajciar,</p><p>PostgreSQL doesn&#8217;t have stored procedures but I understand that PostgreSQL functions can be used in the same way as sprocs.  We are looking into supporting PostgreSQL functions and we will see if we can get this into 2.2 but no promises!</p><p>No, we will not be adding a naming prefix to stored procedures.  Application code should not care whether the GetContributions method resolves down to a table query or a stored procedure.  You can of course adopt such a naming convention yourself by editing the method names in the designer, but we would recommend against this.</p> ]]></content:encoded> </item> <item><title>By: Visual Studio Links #104 : Visual Studio Hacks</title><link>http://www.mindscape.co.nz/blog/index.php/2009/01/25/screencast-stored-procedures-with-lightspeed/comment-page-1/#comment-28672</link> <dc:creator>Visual Studio Links #104 : Visual Studio Hacks</dc:creator> <pubDate>Tue, 27 Jan 2009 19:13:41 +0000</pubDate> <guid
isPermaLink="false">http://www.mindscape.co.nz/blog/?p=419#comment-28672</guid> <description>[...] Mindscape Blog has a link to a screencast on using the LightSpeed Visual Studio Designer with stored procedures.&#160; It also demonstrates the same without using the [...]</description> <content:encoded><![CDATA[<p>[...] Mindscape Blog has a link to a screencast on using the LightSpeed Visual Studio Designer with stored procedures.&nbsp; It also demonstrates the same without using the [...]</p> ]]></content:encoded> </item> <item><title>By: nefajciar</title><link>http://www.mindscape.co.nz/blog/index.php/2009/01/25/screencast-stored-procedures-with-lightspeed/comment-page-1/#comment-28654</link> <dc:creator>nefajciar</dc:creator> <pubDate>Tue, 27 Jan 2009 10:00:47 +0000</pubDate> <guid
isPermaLink="false">http://www.mindscape.co.nz/blog/?p=419#comment-28654</guid> <description>This is excellent, when is PostgreSQL support comming? (MySQL isn&#039;t famous for fast SPs implementation).I know it is just me, but the addition of SPs will mix with all other methods/properties of uow. Are you considering putting some naming prefix to Stored Procedures?I know I can do it myself in the DB and name each stored procedure like SP_DoSomething, but it is now allways possible.
So if my stored procedure is named DoSomething and I drag it to a desinger I would expect it to be renamed to SP_DoSomething (or sp_DoSomething).So later on I can see that I am actually working with stored procedure in the code (it doesn&#039;t look so clear for the new guy browsing through the code).So it is something like &quot;pluralize table names&quot;, an option for the aliens like me:) would like. If there is some better way of &quot;detecting&quot; or &quot;marking&quot; the us of SPs in code let me know as it mixes with object oriented approach. And I would like to emphasize that.Thanks, Mindscape Lightspeed is gaining speed in features support really fast...</description> <content:encoded><![CDATA[<p>This is excellent, when is PostgreSQL support comming? (MySQL isn&#8217;t famous for fast SPs implementation).</p><p>I know it is just me, but the addition of SPs will mix with all other methods/properties of uow. Are you considering putting some naming prefix to Stored Procedures?</p><p>I know I can do it myself in the DB and name each stored procedure like SP_DoSomething, but it is now allways possible.<br
/> So if my stored procedure is named DoSomething and I drag it to a desinger I would expect it to be renamed to SP_DoSomething (or sp_DoSomething).</p><p>So later on I can see that I am actually working with stored procedure in the code (it doesn&#8217;t look so clear for the new guy browsing through the code).</p><p>So it is something like &#8220;pluralize table names&#8221;, an option for the aliens like me:) would like. If there is some better way of &#8220;detecting&#8221; or &#8220;marking&#8221; the us of SPs in code let me know as it mixes with object oriented approach. And I would like to emphasize that.</p><p>Thanks, Mindscape Lightspeed is gaining speed in features support really fast&#8230;</p> ]]></content:encoded> </item> <item><title>By: John-Daniel Trask</title><link>http://www.mindscape.co.nz/blog/index.php/2009/01/25/screencast-stored-procedures-with-lightspeed/comment-page-1/#comment-28633</link> <dc:creator>John-Daniel Trask</dc:creator> <pubDate>Mon, 26 Jan 2009 20:08:03 +0000</pubDate> <guid
isPermaLink="false">http://www.mindscape.co.nz/blog/?p=419#comment-28633</guid> <description>Thanks for the feedback Dave :-)We&#039;re actively looking to improve the exception message when a field like Id is missing. It does seem clear once you realise why object materialization has failed but making it more obvious will help save developers time if they run into this issue.Thanks for covering us in your presentations - I hope you had a lot of fun doing them.</description> <content:encoded><![CDATA[<p>Thanks for the feedback Dave :-)</p><p>We&#8217;re actively looking to improve the exception message when a field like Id is missing. It does seem clear once you realise why object materialization has failed but making it more obvious will help save developers time if they run into this issue.</p><p>Thanks for covering us in your presentations &#8211; I hope you had a lot of fun doing them.</p> ]]></content:encoded> </item> <item><title>By: David Hayden</title><link>http://www.mindscape.co.nz/blog/index.php/2009/01/25/screencast-stored-procedures-with-lightspeed/comment-page-1/#comment-28631</link> <dc:creator>David Hayden</dc:creator> <pubDate>Mon, 26 Jan 2009 19:47:38 +0000</pubDate> <guid
isPermaLink="false">http://www.mindscape.co.nz/blog/?p=419#comment-28631</guid> <description>Nice!I found this beauty the other day in the nightly builds and presented it this past Saturday during one of the local developer events.I had wondered why I was getting a FormatException when working with Projections and I should have realized that since you were deriving the custom results from Entity I needed to also return an Id. Not sure I really like having to return an Id column if I don&#039;t need to use it, but it is a small price to pay for the functionality.Love the new stored procedure support.Dave</description> <content:encoded><![CDATA[<p>Nice!</p><p>I found this beauty the other day in the nightly builds and presented it this past Saturday during one of the local developer events.</p><p>I had wondered why I was getting a FormatException when working with Projections and I should have realized that since you were deriving the custom results from Entity I needed to also return an Id. Not sure I really like having to return an Id column if I don&#8217;t need to use it, but it is a small price to pay for the functionality.</p><p>Love the new stored procedure support.</p><p>Dave</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (request URI is rejected)

Served from: www.mindscape.co.nz @ 2010-09-10 07:50:39 -->