访问visual studio 2013阅读数据

时间:2015-03-21 15:03:41

标签: visual-studio-2013 ms-access-2013

你好伙计们,当我想根据列读取一行并更新基于该行的所有列中的所有数据,如何使用查询或代码我无法获取它时,我确实有从访问数据库中读取数据的问题我坚持下去,请帮助我这是我想要的名字或姓氏的代码,并获得所有数据包含ID或电话号码

if (database.readFromTable(ID.Text.ToString(), NameF.Text.ToString(), NameL.Text.ToString()))
            {                   
                command.Connection = connection;
                string R = "select * from Table where "+"ID=" + ID.Text + " OR NameF=" + NameP.Text + " OR NameL =" + NameL.Text;
                command.CommandText = R;
                connection.Open();
                reader = command.ExecuteReader();
                if (reader.HasRows)
                {
                    //while (reader.Read())
                    //{
                        //ID.Text = reader["ID"].ToString();
                       // NameF.Text = reader["NameF"].ToString();
                        //NameLText = reader["NameL"].ToString();
                    //}//
                }
                reader.Close();
                connection.Close();
            }

0 个答案:

没有答案