Skip to content

Releases: zzzprojects/Eval-SQL.NET

v1.1.84

12 Sep 18:33
Compare
Choose a tag to compare

Download the SQL CLR here

  • UPDATED: Monthly Trial Release

Trial unlocked until the end of October

v1.1.83

15 Aug 22:11
Compare
Choose a tag to compare

Download the SQL CLR here

  • UPDATED: Monthly Trial Release

Trial unlocked until the end of September

v1.1.82

11 Jul 23:31
Compare
Choose a tag to compare

Download the SQL CLR here

  • UPDATED: Monthly Trial Release

Trial unlocked until the end of August

v1.1.81

13 Jun 02:02
Compare
Choose a tag to compare

Download the SQL CLR here

  • UPDATED: Monthly Trial Release

Trial unlocked until the end of July

v1.1.80

16 May 21:44
Compare
Choose a tag to compare

Download the SQL CLR here

  • UPDATED: Monthly Trial Release

Trial unlocked until the end of June

v1.1.79

17 Apr 20:22
Compare
Choose a tag to compare

Download the SQL CLR here

  • UPDATED: Monthly Trial Release

Trial unlocked until the end of May

v1.1.78

20 Mar 22:38
Compare
Choose a tag to compare

Download the SQL CLR here

  • UPDATED: Monthly Trial Release

Trial unlocked until the end of April

v1.1.77

21 Feb 20:18
Compare
Choose a tag to compare

Download the SQL CLR here

  • UPDATED: Monthly Trial Release

Trial unlocked until the end of March

v1.1.76

24 Jan 22:08
Compare
Choose a tag to compare

Download the SQL CLR here

  • UPDATED: Monthly Trial Release

Trial unlocked until the end of February

v1.1.75

06 Dec 19:23
Compare
Choose a tag to compare

Download the SQL CLR here

  • UPDATED: Monthly Trial Release
  • ADDED: DefaultNumberType method to allow to add a default number type when no suffix is specified
DECLARE @sqlnet SQLNET
 
SET @sqlnet = SQLNET::New('5/100').DefaultNumberType('double');
 
SELECT @sqlnet.Eval() -- return 0.05 instead of 0

-- Valid value:
-- 'none' -- default 
-- 'int'
-- 'uint' 
-- 'long' 
-- 'ulong' 
-- 'float' 
-- 'decimal' 
-- 'double'

Trial unlocked until the end of January