0

我已经创建了一些值,我想将它们插入到数据库中,但是我发现有些数据已插入而有些则没有,我不知道为什么

这是我的代码

SqlConnection con = new SqlConnection();
con.ConnectionString = "Persist Security Info=False;Integrated Security=SSPI;database=DB1;server=KHALED-PC;Connect Timeout=30";

char[] delimiterChars = { ' ', ',', '.', ':', '\t', '<', ':', '$', '=', ';', ' ', '<', '>', '!', ';', ']', '[', '"',
  '/','=','-','!','#','$','%','^','&','*','/'
};
string[] stopwords ={"a", "about", "above", "above", "across", "after", "afterwards", "again", "against", "all", "almost", "alone", "along", "already", "also","although","always","am","among", "amongst", "amoungst", "amount",  "an", "and", "another", "any","anyhow","anyone","anything","anyway", "anywhere", "are", "around", "as",  "at", "back","be","became", "because","become","becomes", "becoming", "been", "before", "beforehand", "behind", "being", "below", "beside", "besides", "between", "beyond", "bill", "both", "bottom","but", "by", "call", "can", "cannot", "cant", "co", "con", "could", "couldnt", "cry", "de", "describe", "detail", "do", "done", "down", "due", "during", "each", "eg", "eight", "either", "eleven","else", "elsewhere", "empty",
  "enough", "etc", "even", "ever", "every", "everyone", "everything", "everywhere", "except", "few",
  "fifteen", "fify", "fill", "find", "fire", "first", "five", "for", "former", "formerly", "forty", "found",
  "four", "from", "front", "full", "further", "get", "give", "go", "had", "has",
  "hasnt", "have", "he", "hence", "her", "here", "hereafter", "hereby", "herein",
  "hereupon", "hers", "herself", "him", "himself", "his", "how", "however",
  "hundred", "ie", "if", "in", "inc", "indeed", "interest", "into", "is", "it",
  "its", "itself", "keep", "last", "latter", "latterly", "least", "less", "ltd",
  "made", "many", "may", "me", "meanwhile", "might", "mill", "mine", "more",
  "moreover", "most", "mostly", "move", "much", "must", "my", "myself", "name",
  "namely", "neither", "never", "nevertheless", "next", "nine", "no", "nobody",
  "none", "noone", "nor", "not", "nothing", "now", "nowhere", "of", "off",
  "often", "on", "once", "one", "only", "onto", "or", "other", "others",
  "otherwise", "our", "ours", "ourselves", "out", "over", "own","part", "per",
  "perhaps", "please", "put", "rather", "re", "same", "see", "seem", "seemed",
  "seeming", "seems", "serious", "several", "she", "should", "show", "side",
  "since", "sincere", "six", "sixty", "so", "some", "somehow", "someone", 
  "something", "sometime", "sometimes", "somewhere", "still", "such", "system",
  "take", "ten", "than", "that", "the", "their", "them", "themselves", "then",
  "thence", "there", "thereafter", "thereby", "therefore", "therein", 
  "thereupon", "these", "they", "thickv", "thin", "third", "this", "those",
  "though", "three", "through", "throughout", "thru", "thus", "to", "together",
  "too", "top", "toward", "towards", "twelve", "twenty", "two", "un", "under",
  "until", "up", "upon", "us", "very", "via", "was", "we", "well", "were",
  "what", "whatever", "when", "whence", "whenever", "where", "whereafter",
  "whereas", "whereby", "wherein", "whereupon", "wherever", "whether",
  "which", "while", "whither", "who", "whoever", "whole", "whom", "whose", 
  "why", "will", "with", "within", "without", "would", "yet", "you", "your",
  "yours", "yourself", "yourselves", "the"
};

string[] words = txt.Split(delimiterChars);//remove punctuation character 


int index = 1;
bool check = true;
foreach (string f in words)
{
  for (int s = 0; s < stopwords.Length; s++)
  {
    if (f == stopwords[s])
    {
      check = false;
      index++;
      break;
    }
  }
  if (f.Trim().Length > 0 && check == true)
  {
    //Console.WriteLine("word : " + e + "(position):" + index);
    con.Open();
    //s.ToLower();
    SqlCommand cmd = new SqlCommand("INSERT INTO TableFF (Position) VALUES (@index)", con);

    cmd.Parameters.Add(new SqlParameter("@index",index));

    //  cmd.CommandType = CommandType.Text;
    cmd.ExecuteNonQuery();
    con.Close();
    index++;
  }
  check = true;
}

string []wordsbeforesoundex = new string[10000000];
for (int j = 0; j < words.Length; j++)
{
  wordsbeforesoundex[j] = words[i];
}

foreach (string word in wordsbeforesoundex)
{
  string results = "";
  con.Open();

  string wordss = word;
  SqlCommand cmd1 = new SqlCommand("INSERT INTO TableFF (SoundexNumbers) VALUES (@wordss)", con);
  cmd1.Parameters.Add(new SqlParameter("@wordss", wordss));

  cmd1.ExecuteNonQuery();
  wordss = null;
  con.Close();
}

第一个 foreach 循环中的第一个值已成功插入,但在第二个 foreach 中没有插入任何内容,尽管我确定了我插入的参数和值

4

1 回答 1

1

这条线

string[] wordsaftersoundex="khaled go to school by bus and he is good boy"

甚至不编译

如果你想得到一个单词数组试试这个

string[] wordsaftersoundex="khaled go to school by bus and he is good boy".Split(' ')

在任何情况下,您都想告诉我们一些事情,因为正如我在上面告诉您的那样,您的代码甚至无法编译。

于 2012-05-25T18:16:10.860 回答