I'm using godot C# stable v3.4 and using VScode an external editor with C# code and trying to make a connection between my project using C# and SQL Server using SQL server management studio 2019 and here is my initial code
using Godot;
using System;
using System.Data.SqlClient;
public class Control : Godot.Control
{
public override void Ready()
{
SqlConnection conn = new SqlConnection("Server=DESKTOP-CQUGBAI;Database=SMS;TrustedConnection=True;");
try
{
conn.Open();
OS.Alert("Open", "Message Box");
}
catch(Exception ex)
{
OS.Alert(ex.ToString(), "Message Box");
}
}
}
the problem is the debug stoped at the SqlConnection object and give me this message

for better quality