Solved

CLR Assembly using ThinkWise with AWS RDS SQL server

  • 20 October 2021
  • 2 replies
  • 157 views

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.

icon

Best answer by René W 20 October 2021, 16:28

View original

2 replies

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

Userlevel 5
Badge +15

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