From 2fe0c192603b58e36255573c5e91fd8a26259be0 Mon Sep 17 00:00:00 2001 From: Ehsan Mirsaeedi Date: Sun, 23 Jun 2019 01:45:53 -0400 Subject: [PATCH] Update README.md --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6a633ec..6ae86be 100644 --- a/README.md +++ b/README.md @@ -7,17 +7,31 @@ The aim of this project is to make it more easier for developers to work with ja ## 💡 Installation -* Make sure you have .NET framework 3.5 installed on your server. You can easily search [how to install .NET Framework 3.5](https://www.google.ca/search?q=how+to+install+.NET+Framework+3.5&rlz=1C1CHBF_enCA788CA788&oq=how+to+install+.NET+Framework+3.5&aqs=chrome..69i57j0l5.383j0j1&sourceid=chrome&ie=UTF-8) using Google. +* Make sure you have .NET framework 4.7.2+ installed on your server. * Since this library has beed developed using SQL CLR, firstly you need to configure your SQL Server by [Enabling CLR Integration In SQL Server](https://msdn.microsoft.com/en-us/library/ms131048.aspx) +### SQL Server 2005-2014 ```sql sp_configure 'show advanced options', 1; GO RECONFIGURE; GO sp_configure 'clr enabled', 1; +GO +RECONFIGURE; +GO +``` +### SQL Server 2017+ +```sql +sp_configure 'show advanced options', 1; +GO +RECONFIGURE; GO +sp_configure 'clr enabled', 1; +GO +EXEC sp_configure 'clr strict security',0; +GO RECONFIGURE; GO ```