fHtmVersion() returns the version number of this htm library as a string

Namespace: Spherical.Htm
Assembly: SphericalHtm (in SphericalHtm.dll) Version: 1.0.0.0

Syntax

C#
public static SqlString fHtmVersion()
Visual C++
public:
static SqlString fHtmVersion()
F#
static member fHtmVersion : unit -> SqlString 

Return Value

sqlString: Somthing like this
Typically: "Spherical.HTM 3.1.0 (Release - Build 1)"

Examples

CopyC#
create function fHtmVersion() returns nvarchar(max)
        as external name HTM.Sql.fHtmVersion
declare @version nvarchar(max)
select @version = dbo.fHtmVersion()

See Also