摘要:
今天上百度,MSDN上查阅学习了sqlconnection,sqlcommand,SqlDataReader等知识,用于提取从数据库获取的信息。以下是我负责的search()函数的部分代码: 1 string connectionString = GetConnectionString(); //SQL Server链接字符串 2 using (SqlConnection connection = new SqlConnection(connectionString)) //S... 阅读全文
摘要:
今天我们团队DOOM分配工作,我们组负责Online System中的search of this site和Upload/Downloadcontent模块。而我的任务是search of this site中search函数,功能是从Content Pipeline 组中的数据库中找到符合用户搜索内容的数据,并把这写数据传给sort排序函数(优先级)。 我工作的平台是win7 32bit,Visual Studio 2012,Microsoft SQL Server 2008 R2。 今天学习了建立SQL数据库,建立文件列表(测试用):学习在C#中连接SQLstatic void ... 阅读全文