I\'m attempting to fill a DataTable with results pulled from a MySQL database, however the DataTable, although it is initialised, doesn\'t populate. I wanted to use this Dat
Here the following why the codes would not work.
table
, try this querystring query = "SELECT * FROM characters WHERE _SteamName LIKE '" + loginName + "%'";
notice the LIKE
and %
this could help to list all the data.
for more details String Comparison Functions