Please be aware that the content in SAP SQL Anywhere Forum will be migrated to the SAP Community in June and this forum will be retired.

Now that there is an official .NET core ado.net library available, are you able to publish it to nuget.org?

If not, is the community allowed to?

asked 10 May '22, 19:28

Nick%20Brooks's gravatar image

Nick Brooks
668212537
accept rate: 33%


It's not that simple. The .NET assembly requires several C style DLLs to be installed correctly in order to function.

permanent link

answered 11 May '22, 11:09

beater's gravatar image

beater
89229
accept rate: 0%

Yep.

Valid point, but I see two seperate issues here - one is deployment that you raised, the other is development.

That is, you need to reference Sap.Data.SQLAnywhere.Core.v2.1 to be able to use it in your code (e.g. SAConnection) and it is far easier to simply dotnet add package SqlAnywhere than having to find it on disk to then add a project reference - plus it fits in with the standard model of adding third-party libraries (and updating them). E.g. To use/update Postgresql you just dotnet add package Npgsql

It would be great to be able to solve both problems with Nuget, but I haven't had the time to play with that yet (plus not sure what the requirements are with the dotnet core library yet).

(11 May '22, 18:52) Nick Brooks
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×76

question asked: 10 May '22, 19:28

question was seen: 664 times

last updated: 11 May '22, 18:53