摘要: sqlCommand1.CommandText = "INSERT INTO userinfo (pwd, name) VALUES (@pwd, @name) SELECT @@IDENTITY AS Id"; sqlCommand1.Connection = sqlConnection1; sqlCommand1.Parameters.Add(new System.Data.SqlCl... 阅读全文
posted @ 2017-10-06 15:16 现实太坑爹 阅读(406) 评论(0) 推荐(0) 编辑
摘要: switch ($p) { case 'home': case '': $current_home = 'current'; break; case 'users.online': case 'users.location': case 'users.featured': case 'users.new': ... 阅读全文
posted @ 2017-10-06 10:54 现实太坑爹 阅读(8975) 评论(0) 推荐(0) 编辑
摘要: DataSet和DataTable区别 da.Fill(ds, "alias_1"); //使用DataAdapter的Fill方法(填充),调用SELECT命令,别名 dataGridView8.DataSource = ds.Tables[0]; da.Fill(dt); //直接填充给dt fle... 阅读全文
posted @ 2017-10-05 08:48 现实太坑爹 阅读(741) 评论(0) 推荐(0) 编辑
摘要: //声明数组. 第一种方法. 声明并分配元素大小. int[] Myint = new int[30]; Myint[0] = 30; Myint[1] = 50; // 以此类推, 起始下标为0 //------------------------------- ... 阅读全文
posted @ 2017-10-03 14:28 现实太坑爹 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 还等什么 开整吧! 阅读全文
posted @ 2012-05-03 13:38 现实太坑爹 阅读(65) 评论(0) 推荐(0) 编辑