![]() |
Can we use javascript in SQL stored procedure?In: JavaScript |
[Edit] |
Answer
Transact-SQL in an internationally standardised method to create, modify and delete databases and tables, as well as insert, retrieve, modify and delete data stored in a database.
With Microsoft SQL Server 2005 you can also author procedures in any managed language such as C# or VB.
This is because it is integrated with the CLR which allows you write powerful programs inside stored procedures.
All functionality of the .NET Framework BCL (Base Class Library) is available to your stored procedures. This means that developers have access to thousands of pre-built classes and routines which can be accessed.
The BCL includes classes that provide functionality for improved string functioning, advanced math operations, file access, cryptography, and more.
First answer by RobinJet. Last edit by RobinJet. Contributor trust: 12 [recommend contributor]. Question popularity: 5 [recommend question]





