SqlConnection,SqlCommand,SqldataReader的用法总结:

2024-04-27 22:08

本文主要是介绍SqlConnection,SqlCommand,SqldataReader的用法总结:,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

SqlConnection,SqlCommand,SqldataReader的用法总结:  

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;

public partial class _Default : System.Web.UI.Page 
{
    
protected void Page_Load(object sender, EventArgs e)
    {
        
//-------------------SqlConnection,SqlCommand,SqldataReader的用法-------------------//

        
//下面的4种形式等价,如果你的数据库是Windows连接方法,直接把连接字符串改成"server=.;database=northwind;integrated security=true;"
        
//如果你的数据库是某个实例名,直接把"server=."改成"server=你的计算机名实例名"就可以了

        SqlConnection con 
= new SqlConnection();
        con.ConnectionString 
= "server=.;database=northwind;uid=sa;pwd=;";  //双引号中的最后一个分号可以去掉
        con.Open();
        SqlCommand cmd 
= con.CreateCommand();
        cmd.CommandText 
= "select * from customers";
        SqlDataReader sdr 
= cmd.ExecuteReader();
        
this.GridView1.DataSource = sdr;
        
this.GridView1.DataBind();
        sdr.Close();
        con.Close();

        
//SqlConnection con = new SqlConnection();
        
//con.ConnectionString = "server=.;database=northwind;uid=sa;pwd=;";   //双引号中的最后一个分号可以去掉
        
//con.Open();
        
//SqlCommand cmd = new SqlCommand("select * from customers");
        
//cmd.Connection = con;
        
//SqlDataReader sdr = cmd.ExecuteReader();
        
//this.GridView1.DataSource = sdr;
        
//this.GridView1.DataBind();
        
//sdr.Close();
        
//con.Close();


        
////我最经常用这一种,同时连接对象是整个程序的公共对象,所以我一般会把数据库连接封装到一个类中,这样就可以在程序的任何地方随时调用
        //SqlConnection con = new SqlConnection("server=.;database=northwind;uid=sa;pwd=;"); //双引号中的最后一个分号可以去掉
        
//con.Open();
        
//SqlCommand cmd = new SqlCommand("select * from customers", con);
        
//SqlDataReader sdr = cmd.ExecuteReader();
        
//this.GridView1.DataSource = sdr;
        
//this.GridView1.DataBind();
        
//sdr.Close();
        
//con.Close();

        
//SqlConnection con = new SqlConnection();
        
//con.ConnectionString = "server=.;database=northwind;uid=sa;pwd=;";   //双引号中的最后一个分号可以去掉
        
//con.Open();
        
//SqlCommand cmd = new SqlCommand();
        
//cmd.Connection = con;
        
//cmd.CommandText = "select * from customers";
        
//cmd.CommandType = CommandType.Text;  //这条语句是多余的,因为默认就是Text 
        
//SqlDataReader sdr = cmd.ExecuteReader();
        
//this.GridView1.DataSource = sdr;
        
//this.GridView1.DataBind();
        
//sdr.Close();
        
//con.Close();

这篇关于SqlConnection,SqlCommand,SqldataReader的用法总结:的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/941663

相关文章

Kubernetes常用命令大全近期总结

《Kubernetes常用命令大全近期总结》Kubernetes是用于大规模部署和管理这些容器的开源软件-在希腊语中,这个词还有“舵手”或“飞行员”的意思,使用Kubernetes(有时被称为“... 目录前言Kubernetes 的工作原理为什么要使用 Kubernetes?Kubernetes常用命令总

Python中实现进度条的多种方法总结

《Python中实现进度条的多种方法总结》在Python编程中,进度条是一个非常有用的功能,它能让用户直观地了解任务的进度,提升用户体验,本文将介绍几种在Python中实现进度条的常用方法,并通过代码... 目录一、简单的打印方式二、使用tqdm库三、使用alive-progress库四、使用progres

oracle中exists和not exists用法举例详解

《oracle中exists和notexists用法举例详解》:本文主要介绍oracle中exists和notexists用法的相关资料,EXISTS用于检测子查询是否返回任何行,而NOTE... 目录基本概念:举例语法pub_name总结 exists (sql 返回结果集为真)not exists (s

Android数据库Room的实际使用过程总结

《Android数据库Room的实际使用过程总结》这篇文章主要给大家介绍了关于Android数据库Room的实际使用过程,详细介绍了如何创建实体类、数据访问对象(DAO)和数据库抽象类,需要的朋友可以... 目录前言一、Room的基本使用1.项目配置2.创建实体类(Entity)3.创建数据访问对象(DAO

Springboot中Jackson用法详解

《Springboot中Jackson用法详解》Springboot自带默认json解析Jackson,可以在不引入其他json解析包情况下,解析json字段,下面我们就来聊聊Springboot中J... 目录前言Jackson用法将对象解析为json字符串将json解析为对象将json文件转换为json

Java向kettle8.0传递参数的方式总结

《Java向kettle8.0传递参数的方式总结》介绍了如何在Kettle中传递参数到转换和作业中,包括设置全局properties、使用TransMeta和JobMeta的parameterValu... 目录1.传递参数到转换中2.传递参数到作业中总结1.传递参数到转换中1.1. 通过设置Trans的

C# Task Cancellation使用总结

《C#TaskCancellation使用总结》本文主要介绍了在使用CancellationTokenSource取消任务时的行为,以及如何使用Task的ContinueWith方法来处理任务的延... 目录C# Task Cancellation总结1、调用cancellationTokenSource.

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

学习hash总结

2014/1/29/   最近刚开始学hash,名字很陌生,但是hash的思想却很熟悉,以前早就做过此类的题,但是不知道这就是hash思想而已,说白了hash就是一个映射,往往灵活利用数组的下标来实现算法,hash的作用:1、判重;2、统计次数;

git使用的说明总结

Git使用说明 下载安装(下载地址) macOS: Git - Downloading macOS Windows: Git - Downloading Windows Linux/Unix: Git (git-scm.com) 创建新仓库 本地创建新仓库:创建新文件夹,进入文件夹目录,执行指令 git init ,用以创建新的git 克隆仓库 执行指令用以创建一个本地仓库的