自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

努力

不断提高

  • 博客(8)
  • 资源 (1)
  • 收藏
  • 关注

原创 c#操作OleDB类

using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Drawing;using System.Web;using System.Text.RegularExpressions;using System.Windows.Forms;

2009-10-27 08:20:00 1497

原创 通过C#从数据库中读取内容生成WORD文档

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Data.OleDb;using System.Drawing;using System.Text;using System.Windows.Forms;us

2009-10-23 07:52:00 1443

原创 asp读取XML

set xml = server.CreateObject("Microsoft.XMLDOM")xml.async = "false"xml.load(server.MapPath("/Contract/tree/ContractDraftOut.xml"))set nodelist = xml.documentElement.selectNodes("//root/entity")

2009-10-23 07:50:00 453

原创 读取文件以进制方式存至数据库中以及读取

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.IO;using Syst

2009-10-23 07:43:00 440

原创 使用C#操作Doc转Txt存数据库

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.IO;using Syst

2009-10-23 07:41:00 978

原创 SQL SERVER 2005 数据库状态为“可疑”的解决方法

--MyDB为修复的数据名USE MASTERGOSP_CONFIGURE ALLOW UPDATES,1 RECONFIGURE WITH OVERRIDEGOALTER DATABASE MyDB SET EMERGENCYGOsp_dboption MyDB, single user, trueGODBCC CHECKDB(MyDB,REPAIR_ALLOW_DATA_

2009-10-23 07:38:00 586

原创 通过游标删除重复数据

declare @max integer,@id nvarchar(max)declare cur_rows cursor local for select itemcontent,count(*) from 处理重复 group by itemcontent having count(*) > 1open cur_rowsfetch cur_rows into @id,@maxwhile @@f

2009-10-23 07:37:00 560

原创 通过C#采集指定地址页面内容

using System;using System.Collections.Generic;using System.Text;using System.Net;using System.Text.RegularExpressions;using System.IO; public class DownData { public DownData() { }

2009-10-23 07:32:00 483

sql2000,sql2005分页存储过程

分页存储过程,sql2000,sql2005

2008-09-28

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除