vote up 0 vote down star

Hello, Can i write a C or native C++ stored procedures for SQL Server?

Thanks.

flag

75% accept rate

1 Answer

vote up 1 vote down check

Not really - in SQL Server 2005 and up, you can write stored procs in managed code, e.g. C#, VB.NET etc.

For earlier SQL Server, there was the concept of extended stored procedures, which you could write in C or C++, and then plug into SQL Server and call it from there - but that capability is considered deprecated and potentially a security hole, so it's not recommended.

Here's a CodeProject article on the topic that might be useful.

Marc

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.