Skip to main content

For our customer we have to adjust a string. This requires a DLL written in C# that we want to deploy on an AWS RDS SQL server. Is this possible and how do I go about doing this with safety in mind?

For parsing a barcode text field into information useful to the client, the DLL is written in C#. If the above is not possible, please provide an alternative. Thank you.

To clarify: We need to parse a ean 128 gs1 string.


Is it necessary to use a C# DLL via SQL Server? Having a managed sql database is pricy (in Azure) and introduces complexity. Not all C# code is compatible with SQL Server.

If possible you could consider a HTTP Connector doing a http call to your web service / api with the C# logic in it.


Reply