文章分类 -  MsSQL

微软的数据库技术MsSQLServer
摘要:C#控件代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using System.Data;using System.Text;using System.Windows.Forms;using System.Data.SqlClient;using System.Threading;namespace GpsControl{ public partial class UCPageTableProc : UserControl { public UCP 阅读全文
posted @ 2011-07-11 15:31 月光小提琴 阅读(843) 评论(0) 推荐(0)
摘要:转自http://blog.csdn.net/a3676212/archive/2009/03/31/4038943.aspx,太详细了,爽1. 定义游标定义游标语句的核心是定义了一个游标标识名,并把游标标识名和一个查询语句关联起来。DECLARE语句用于声明游标,它通过SELECT查询定义游标存储的数据集合。语句格式为:DECLARE 游标名称 [INSENSITIVE] [SCROLL]CUR... 阅读全文
posted @ 2009-05-21 15:44 月光小提琴 阅读(11186) 评论(5) 推荐(4)
摘要:if exists(select name from sysobjects where type='p' and Name='UpdateTextColumn') drop proc UpdateTextColumn go Create proc [dbo].[UpdateTextColumn] @Table varchar(100), @Columns varchar(200),--eg:Col... 阅读全文
posted @ 2009-03-30 11:57 月光小提琴 阅读(239) 评论(0) 推荐(0)
摘要:1.使用Management Studio Express,用“Windows身份验证”登录,选中SQL服务器名,右击鼠标选择属性,在服务器属性选项页面,选择“安全性”,将服务器身份验证由“Windows身份验证”改为“SQL Server和Windows身份验证”,单击确定。 2.使用SQL Server 2005外围应用配置器,选择“服务和连接的外围应用配置器”,选SQL Express... 阅读全文
posted @ 2009-03-27 09:20 月光小提琴 阅读(1884) 评论(3) 推荐(0)
摘要:步骤 1:对于 32 位平台,请下载并安装 Microsoft .NET Framework 2.0 的 32 位版本。对于 64 位平台(仅 x64 和 EMT64),请下载并安装 Microsoft .NET Framework 2.0 的 64 位版本。 注意:如果安装了 SQ... 阅读全文
posted @ 2009-03-27 08:26 月光小提琴 阅读(24115) 评论(10) 推荐(0)