ErikEJ/SqlCeToolbox

Add support for Microsoft.Data.SqlClient

PawelFojt opened this issue · 15 comments

I encountered an issue while attempting to connect to SQL Server using the TrustServerCertificate=true parameter in the connection string. It appears that the connection string generated by the toolbox contains spaces, and unfortunately, there is no way to remove these spaces.

This issue prevents successful connection to the SQL Server due to the presence of spaces in the connection string. As a result, the TrustServerCertificate=true parameter cannot be used effectively.

It would be beneficial to address this issue by either providing a method to eliminate spaces from the generated connection string or by ensuring that connection strings generated by the toolbox do not contain spaces, especially when using parameters such as TrustServerCertificate.

Thank you for your attention to this matter.

Steps to reproduce:

Right click on Data Connections -> Add SQL Server Connection..
image

Test connection is okey.
image

And here Trust Server Certificate has spaces.
image

If I click OK in the Connection Properties Window, the following error occurs.
image

Further technical details:

Toolbox/Power Tools version: 4.8.776

Database engine: SQL Server

Visual Studio or SSMS version: Visual Studio 2022 17.8.6, SSMS 19.3

ErikEJ commented

Try to change data source when creating the connection

ErikEJ commented

It is caused by differences in connection strings between System.Data.SqlClient and Microsoft.Data.SqlClient

ErikEJ commented

I was able to repro, I will get this fixed

ErikEJ commented

I added a fix for this in the latest daily build from VSIX gallery, could you try it and let me know?

Now, when connected to the database, there's no issue, and I can even see that database under "Data Connections." However, when I try to right click on my DB -> script database -> Script schema.., the same error pops up. Additionally, I don't see a single table under the icon of my database.
image
So I think this issue occurs in multiple places within the application.

ErikEJ commented

Where are you right clicking?

On the icon of the database I connected to.

ErikEJ commented

@PawelFojt OK, you are basically asking for support for Microsoft.Data.SqlClient - it was never added. I will look into it,

In the meantime you can create a connection using the legacy Provider:

image

ErikEJ commented

@PawelFojt I added a fix for this in the latest daily build from VSIX gallery, could you try it and let me know?

The database connection is working, and there are no errors popping up when using the 'Script schema..' command. However, I don't see any tables. When I connect to the same database using SSMS, I can see several tables.
image

ErikEJ commented

I am not able to repro, can you share a sample schema?

Right click on Data Connections -> Add SQL Server Connection.. -> fill Server name -> change Authentication to SQL Server Authentication -> fill User name and Password -> check Trust Server Certificate -> Test Connection is OK -> Click OK -> now I see myDb below Data Connections (but I don't see any table) - right click on myDb -> Script Database.. -> Script Schema -> here I also don't see any table

ErikEJ commented

Data Connections (but I don't see any table)

Correct, the tool does not list any server tables - this is by design

I am unable to repro - I see tables listed.