Techvani.MSSQlDBInfo 1.0.0

dotnet add package Techvani.MSSQlDBInfo --version 1.0.0
                    
NuGet\Install-Package Techvani.MSSQlDBInfo -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Techvani.MSSQlDBInfo" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Techvani.MSSQlDBInfo" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Techvani.MSSQlDBInfo" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Techvani.MSSQlDBInfo --version 1.0.0
                    
#r "nuget: Techvani.MSSQlDBInfo, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Techvani.MSSQlDBInfo@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Techvani.MSSQlDBInfo&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Techvani.MSSQlDBInfo&version=1.0.0
                    
Install as a Cake Tool

DataBaseInfo

This package provides all information about the given database ,you just need to provide valid connection string in constrictor of DataBaseInfo class.

Methods:

  1. GetTables() Returns: List<string> of Table Names (e.g., “databaseSchemaName.TableName”).

  2. GetSchemas() Returns: List<string> of Schema Names.

  3. GetConstraints(“Schema_Name”,”Table_Name”) Returns: List<Object> , where object is of constraint type having two properties: “Contraint_Name” , “Contraint_Type” (e.g.,”Foreign Key”).

  4. GetTablesBySchema(“Schema_Name”) Returns: List<string> of Table Names

  5. GetViews() Returns: List<string> of View Names.

  6. GetUserFunctions() Returns: Object of function type , having two properties:

  1. “Function_Name” ,
  2. List<object> of parameters (this list provides: “parameter_name”, “type” (e.g., “In” or “Out”), “DataType” (e.g., “int”,”vchar” etc), “Length”, “Position”).
  1. GetUserFunctionsBySchema(“Schema_Name”) Returns: Object of function type , having two properties:
  1. “Function_Name” ,
  2. List<object> of parameters (this list provides: “parameter_name”, “type” (e.g., “In” or “Out”), “DataType” (e.g., “int”,”vchar” etc), “Length”, “Position”).
  1. GetProcedures() Returns: Object list of procedure type, having two properties:
  1. “Procedure_Name” ,
  2. List<object> of parameters (this list provides: “parameter_name”, “type” (e.g., “In” or “Out”), “DataType” (e.g., “int”,”vchar” etc), “Length”, “Position”).
  1. GetProceduresBySchema(“Schema_Name”) Returns: Object list of procedure type, having two properties:
  1. “Procedure_Name” ,
  2. List<object> of parameters (this list provides: “parameter_name”, “type” (e.g., “In” or “Out”), “DataType” (e.g., “int”,”vchar” etc), “Length”, “Position”).
  1. GetColumns(“Schema_Name”,”Table_Name”) Returns: Object list of Column type, having three properties:
  1. “Column_Name” ,
  2. “Column_DataType”,
  3. “Maximum_Length”
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 is compatible.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 615 12/27/2019