Author |
Message |
judahr
Joined: 09 Mar 2007 Posts: 319 Country: United States |
|
T-SQL Code Snippet Errata |
|
v3.0.28
proc -
From
 |
 |
(
<parameters>
)
BEGIN |
TO
 |
 |
(
<parameters>
)
AS
BEGIN
|
|
|
Thu Dec 06, 2007 12:13 pm |
|
 |
judahr
Joined: 09 Mar 2007 Posts: 319 Country: United States |
|
|
|
fun
From:
 |
 |
DECLARE
v_ret <data>
SET v_ret = ...
RETURN v_ret |
To
 |
 |
DECLARE
@v_ret <data>
SET @v_ret = ...
RETURN @v_ret |
|
|
Thu Dec 06, 2007 12:17 pm |
|
 |
SysOp
Site Admin
Joined: 26 Nov 2006 Posts: 7948
|
|
|
|
Thanks for noticing. It looks like a mix of code pasted from other T-SQL and non-T-SQL snippets. Please feel free to correct the snipped code in options are required. We will do the same in the next build.
|
|
Thu Dec 06, 2007 12:23 pm |
|
 |
|