diff --git a/Data_Coupler/Data_Coupler.csproj b/Data_Coupler/Data_Coupler.csproj index 0f7be6e..7dce47b 100644 --- a/Data_Coupler/Data_Coupler.csproj +++ b/Data_Coupler/Data_Coupler.csproj @@ -7,6 +7,13 @@ v detailed + + + false + + true + + true diff --git a/Data_Coupler/Pages/DataCoupler.razor.cs b/Data_Coupler/Pages/DataCoupler.razor.cs index 6ba5493..a93d6b0 100644 --- a/Data_Coupler/Pages/DataCoupler.razor.cs +++ b/Data_Coupler/Pages/DataCoupler.razor.cs @@ -2477,13 +2477,6 @@ public partial class DataCoupler : ComponentBase } } - // Verifica che non contenga commenti SQL potenzialmente pericolosi - if (upperQuery.Contains("--") || upperQuery.Contains("/*")) - { - Logger.LogWarning("Query rifiutata: contiene commenti SQL non consentiti"); - return false; - } - return true; }