Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mirsaeedi authored Jun 23, 2019
1 parent beb4eb6 commit 2fe0c19
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down

0 comments on commit 2fe0c19

Please sign in to comment.