用UPDATE写 怎么写
public bool Update(string namea, string qpwd, string newpwd)
{
DataMenthod dm = new DataMenthod();
string sqlret = "update byuser set PassWord='userpwd'";
//string sqlret = "update datapwd set userpwd='PassWord'";
dm.DataMenthodAdd(sqlret,ui);
return true
}
我是这么写的
这个也是一样的啊 你不是要更新一列字段吗?
那就
public void update(string na)
{
SqlConnection sqlConn = new SqlConnection();
sqlConn.ConnectionString = System.Configuration.ConfigurationManager.ConnectionStrings["ConnString"].ToString();
if (sqlConn.State != ConnectionState.Open)
sqlConn.Open();
string name = FirstTab();
string[] names = name.Split(',');
for (int i = 0; i < names.Length; i++)
{
na=names[i].tostring
string strsql = "update datapwd set userpwd='"+ na +"'" ";
SqlCommand com = new SqlCommand(strsql, sqlConn);
com.ExecuteNonQuery();
}
}
这就好了 你要确保查出来的字段数要与 修改表的字段数相同。 不同的话你需要加一个判断
C#将一个表里的字段更新到另一个表的字段里的语句
string strsql = "Insert 表(字段)values('"+ names[i] +"')";SqlCommand com = new SqlCommand(strsql, sqlConn);com.ExecuteNonQuery();} }
C#怎么样实现把数据从数据库的一个表取出存入数据库的另一个表中
假设源表是TabA,目标表为TabB 直接SQL语句啊,如果这个目标表TabB不存在可以用下面的语句 select fieldlist into tabB from tabA 这时候会自动创建目标表 如果目标表已经存在,是要往里面追加一些数据的话,可以用 insert into TabB (fieldlist)select fieldlist from TabA fieldlist为字段列表 ...
C#中的窗体程序 想让一个窗体上textbox中的值 传递到另一个label中
最简单的方法是你先新建一个静态类 在类里面定义一个string 类型的变量 在登陆成功后给这歌变量赋值,然后就可以在登陆后的窗户使用了 public static CommonData { public string StudentId(){get;set;} } 登陆成功后赋值:CommonData.StudentId="2010307200111";使用的时候 label.Text =CommonData.Stud...
c#能不能连接mysql 在一个表中查询然后把查询到的写入另一张表中
INSERT INTO table2 SELECT * FROM table1;或者我们可以只复制希望的列插入到另一个已存在的表中:INSERT INTO table2 (column_name(s))SELECT column_name(s)FROM table1;
C#把一个datatable中的数据复制到另一张datatable?
\/\/\/ \/\/\/ 源数据DataTable \/\/\/ 查询条件 \/\/\/ <returns><\/returns> public static DataTable GetNewDataTable(DataTable dt, string condition){ DataTable newdt = new DataTable();try { newdt = dt.Clone();DataRow[] dr = dt.Select(condition);for (int i = 0; i < dr.Length...
...如何将一个datatable中的某些字段添加到另一个表中
\/\/ctx是你的数据上下文var column = ctx.tableA.First(x=>x.FieldA == "xxx");List<tabelBRowObj> listB = ctx.tableB.ToList();foreach(var item in listB){ item.FieldB = column;}ctx.SaveChanges();
在C#中,如何把一个类里面的字段属性复制给另一个类里面的字段属性?
public delegate void UpdateLabelHandler(String msg);在Form1添加以下代码 public static event UpdateLabelHandler UpdateLabel;public static void OnUpdateLabel(String msg){ if (UpdateLabel !=null){ UpdateLabel(msg);} } TextChanged中添加以下代码 private void textBox1_TextChanged(object ...
C#我想把数据库一个表所有复制到另外一个表
insert into A(name,password) select * from B left join A on A.name=B.name where A.name=null;如果A里面有name重复记录就不插入,如果有就插入
c# datagridview 怎么把一个表的字段的所有值赋给另一个表
获取string SatrDatevalue = dataGridView1.Rows[行ID].Cells[列ID或列名字符].Tostring();赋值dataGridView2.Rows[行ID].Cells[列ID或列名字符].Value = SatrDatevalue;
c#一个窗体的comboBox里面的字段怎么显示到另一个窗体的datagridview...
重写新窗体,Form2的构造方法,然后用 Form2 fm2= new Forms("DOC");将"DOC"传过去。public partial class Form2: Form { private string fileType = null;public Form2(){ InitializeComponent();} public Form2(string fileType){ InitializeComponent();this.fileType = fileType;} } ...