fHtmVersion() returns the version number of this htm library as a string
Namespace: Spherical.HtmAssembly: 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 thisTypically: "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()