摘要:
插入数据 1 public void InsertDataToSQL() 2 { 3 string conStr = ConfigurationManager.ConnectionStrings["NorthwindConnectionStri... 阅读全文
摘要:
从数据库中读取数据:使用DataReader对象从数据库中读取数据首先需要添加几个命名空间1 //需要添加的命名空间2 using System.Configuration;3 using System.Data;4 using System.Data.SqlClient;配置文件如下1 2 ... 阅读全文
摘要:
一个简单的实例 1 static void Main(string[] args) 2 { 3 string[] names = { "Alonso", "Zheng", "Jones", "Small", 4 "Ruiz", "Hsieh", "Jorgenson", "Ilyich", "Samba", "Fatimah" }; 5 6 var queryResults = from a in 阅读全文
摘要:
1:直接使用HTML代码写效果:2:将枚举中的值写入到 DropdownList假设有个枚举: 1 namespace MvcDropdownList.Controllers 2 { 3 public class EnumController : Controller 4 { 5 // GET: /Enum/ 6 private const string ZHOUYI = "语文"; 7 private const string ZHOUER = "数学"; 8 private const string ZHOUS... 阅读全文
该文被密码保护。 阅读全文
摘要:
假设有两个表结构如下:表table1表 table 2内连接:--内连接select * from table1 inner join table2 on table1.ID = table2.ID 结果:左外连接:--左连接select * from table1 left join table2 on table1.ID = table2.ID结果:右外连接:--右连接select * from table1 right join table2 on table1.ID = table2.ID 结果:全连接:select * from table1 full join table2 on. 阅读全文
摘要:
1: 当创建派生类的实例时,会自动调用基类的默认构造函数 1 namespace parentTest 2 { 3 public class Reader 4 { 5 public Reader() 6 { 7 Console.WriteLine("基类的构造函数被调用"); 8 } 9 10 }11 public class Student:Reader12 {13 public Student()14 {15 Con... 阅读全文
摘要:
1:编写Sql语句,查询id重复3次以上的条目,表为Pram(id,name)先看建立的表:SQL语句: 直接使用一个子查询即可select * from Pramwhere id in(select id from Pramgroup by idhaving COUNT(id)>3) 结果: 阅读全文
摘要:
SELECT TOP 10 SalesOrderID, SalesOrderID % 10 AS 'Last Digit',-- 求最后一位的值 Position = CASE SalesOrderID % 10 WHEN 1 THEN 'First' WHEN 2 THEN 'Second' WHEN 3 THEN 'Third' WHEN 4 THEN 'Fourth' ELSE 'Something Else' ENDFROM Sales.SalesOrderHeader 阅读全文
摘要:
我在大四之前我都觉得跟着微软走是正确的,这条大腿很粗!但是现在我也开始不那么认为了,现在每天在网上找招聘信息,稍微大点的公司都是招java的,很少招.net的!别说什么你学的好不怕没人招之类的话,大公司几乎不招java,这就是个趋势, 你学的再好有几个能去微软的?我当时就心寒啊!昨晚去笔试京东的校招, 前几天我开始还专门在网上找了京东的笔试题来做做,发现最后都要分java和.net的题,但是昨晚我们去做的,只有java了,更本没考一点.net的题!这就是现实!,不信你自己去网上看看各大公司的招聘信息! 阅读全文