IDEMSInternational / TranslateWinForms

Provides utility functions to translate the text in WinForm objects (e.g. menu items, forms and controls) to a different natural language (e.g. to French).
GNU General Public License v3.0
0 stars 2 forks source link

Use of parameterized queries whenever doing CRUD database operations #6

Open Patowhiz opened 2 years ago

Patowhiz commented 2 years ago

Currently the library uses dynamic queries when reading from the database, this has the disadvantages of breaking whenever the input contains SQL recognized literals.

I suggest the library to make use of parametrized queries as much as possible for future stability as more products use it.