Я парень из VB и медленно перехожу на C #.Прежде чем перейти к основной проблеме, я хотел бы сначала показать вам функцию, которую я использовал при работе со строкой.
class NewString
{
public static string RemoveExtraSpaces(string xString)
{
string iTemp = string.Empty;
xString = xString.Trim();
string[] words = xString.Split(' ');
foreach (string xWor in words)
{
string xxWor = xWor.Trim();
if (xxWor.Length > 0)
{
iTemp += " " + xxWor;
}
}
return iTemp;
}
}
Функция просто удаляет все завершающие и лишние пробелы в строке.Например:
NewString.RemoveExtraSpaces(" Stack OverFlow ")
==> will return "Stack OverFlow"
Так что моя проблема в том, что когда я использую эту функцию для удаления пробелов в строке, передаваемой в параметре, в представлении данных не будет записей, связанных с этим.
private void LoadCandidateList(bool SearchAll, string iKey)
{
using (MySqlConnection xConn = new MySqlConnection(ConnectionClass.ConnectionString))
{
using (MySqlCommand xCOmm = new MySqlCommand())
{
xCOmm.Connection = xConn;
xCOmm.CommandType = CommandType.StoredProcedure;
xCOmm.CommandText = "LoadCandidateList";
xCOmm.Parameters.AddWithValue("LoadAll", Convert.ToInt16(SearchAll));
string fnlKey = iKey.Trim();
// when i use the code above, the procedure performs normally
// but if i use the code below, no records will be return
// why is that? i prompt it in the MessageBox to check
// and displays the correct value.
// string fnlKey = NewString.RemoveExtraSpaces(iKey.Trim());
// MessageBox.Show(fnlKey); // => return correct value
xCOmm.Parameters.AddWithValue("iKey", fnlKey);
xCOmm.Parameters.AddWithValue("iCurrentID", _CurrentEventID);
using (DataSet ds = new DataSet())
{
using (MySqlDataAdapter xAdapter = new MySqlDataAdapter(xCOmm))
{
try
{
xConn.Open();
xAdapter.Fill(ds,"CandidateList");
grdResult.DataSource = ds.Tables["CandidateList"];
}
catch (MySqlException ex)
{
MessageBox.Show(ex.Message.ToString(), "Function Error <LoadCandidateList>", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
finally
{
xConn.Close();
}
}
}
}
}
}