ASP。NET连SQL7接口源代码?

源代码

The following example shows what a simple ADO.NET application that connects to the Northwind database and returns a list of Categories would look like. The example writes the output to the console, or command prompt.<br>
<br>
The following example shows what a simple ADO.NET application that connects to the Northwind database and returns a list of Categories. The example writes the output to the console, or command prompt.<br>
<br>
SqlClient<br>
[Visual Basic]<br>
Imports System<br>
Imports System.Data<br>
Imports System.Data.SqlClient<br>
Imports Microsoft.VisualBasic<br>
<br>
Public Class Sample<br>
<br>
  Public Shared Sub Main() <br>
    Dim nwindConn As SqlConnection = New SqlConnection("Data Source=localhost;" & _<br>
                                                       "User Id=sa;Password=pwd;Initial Catalog=northwind")<br>
<br>
    Dim catCMD As SqlCommand = nwindConn.CreateCommand()<br>
    catCMD.CommandText = "SELECT CategoryID, CategoryName FROM Categories"<br>
<br>
    nwindConn.Open()<br>
<br>
    Dim myReader As SqlDataReader = catCMD.ExecuteReader()<br>
<br>
    Do While myReader.Read()<br>
      Console.WriteLine(vbTab & "{0}" & vbTab & "{1}", myReader.GetInt32(0), myReader.GetString(1))<br>
    Loop<br>
<br>
    myReader.Close()<br>
    nwindConn.Close()<br>
  End Sub<br>
End Class<br>
[C#]<br>
using System;<br>
using System.Data;<br>
using System.Data.SqlClient;<br>
<br>
class Sample<br>
{<br>
  public static void Main() <br>
  {<br>
    SqlConnection nwindConn = new SqlConnection("Data Source=localhost;User Id=sa;Password=pwd;Initial Catalog=northwind");<br>
<br>
    SqlCommand catCMD = nwindConn.CreateCommand();<br>
    catCMD.CommandText = "SELECT CategoryID, CategoryName FROM Categories";<br>
<br>
    nwindConn.Open();<br>
<br>
    SqlDataReader myReader = catCMD.ExecuteReader();<br>
<br>
    while (myReader.Read())<br>
    {<br>
      Console.WriteLine("\t{0}\t{1}", myReader.GetInt32(0), myReader.GetString(1));<br>
    }<br>
<br>
    myReader.Close();<br>
    nwindConn.Close();<br>
  }<br>
}<br>
OleDb<br>
[Visual Basic]<br>
Imports System<br>
Imports System.Data<br>
Imports System.Data.OleDb<br>
Imports Microsoft.VisualBasic<br>
<br>
Public Class Sample<br>
<br>
  Public Shared Sub Main() <br>
    Dim nwindConn As OleDbConnection = New OleDbConnection("Provider=SQLOLEDB;Data Source=localhost;" & _<br>
                                                           "User Id=sa;Password=pwd;Initial Catalog=northwind")<br>
<br>
    Dim catCMD As OleDbCommand = nwindConn.CreateCommand()<br>
    catCMD.CommandText = "SELECT CategoryID, CategoryName FROM Categories"<br>
<br>
    nwindConn.Open()<br>
<br>
    Dim myReader As OleDbDataReader = catCMD.ExecuteReader()<br>
<br>
    Do While myReader.Read()<br>
      Console.WriteLine(vbTab & "{0}" & vbTab & "{1}", myReader.GetInt32(0), myReader.GetString(1))<br>
    Loop<br>
<br>
    myReader.Close()<br>
    nwindConn.Close()<br>
  End Sub<br>
End Class<br>
[C#]<br>
using System;<br>
using System.Data;<br>
using System.Data.OleDb;<br>
<br>
class Sample<br>
{<br>
  public static void Main() <br>
  {<br>
    OleDbConnection nwindConn = new OleDbConnection("Provider=SQLOLEDB;Data Source=localhost;User Id=sa;Password=pwd;Initial Catalog=northwind");<br>
<br>
    OleDbCommand catCMD = nwindConn.CreateCommand();<br>
    catCMD.CommandText = "SELECT CategoryID, CategoryName FROM Categories";<br>
<br>
    nwindConn.Open();<br>
<br>
    OleDbDataReader myReader = catCMD.ExecuteReader();<br>
<br>
    while (myReader.Read())<br>
    {<br>
      Console.WriteLine("\t{0}\t{1}", myReader.GetInt32(0), myReader.GetString(1));<br>
    }<br>
<br>
    myReader.Close();<br>
    nwindConn.Close();<br>
  }<br>
}<br>

时间: 2024-09-30 03:55:29

ASP。NET连SQL7接口源代码?的相关文章

ASP.NET连SQL7接口源代码

The following example shows what a simple ADO.NET application that connects to the Northwind database and returns a list of Categories would look like. The example writes the output to the console, or command prompt. The following example shows what

ASP 微信公共平台接口实现代码

 bluedidea看到的ASP 微信公共平台接口实现代码,需要的朋友可以参考下 代码如下: <%@Language="VBScript" CodePage="65001"%> <% '********************************************** '注意事项 'ASP文件需要以UTF-8的格式保存,否则乱码. '以下两行代码是为了通过微信接口验证的. 'response.write request("ech

asp.net继承IHttpHandler接口实现给网站图片添加水印功能实例_实用技巧

本文实例讲述了asp.net继承IHttpHandler接口实现给网站图片添加水印功能.分享给大家供大家参考,具体如下: 先展示图片效果: 1. 在App_Code下添加类文件,命名为ImageSY 文件内容如下 public class ImageSY : IHttpHandler { public ImageSY() { // //TODO: 在此处添加构造函数逻辑 // } #region IHttpHandler 成员 public bool IsReusable { get { ret

Android系统进程间通信Binder机制在应用程序框架层的Java接口源代码分析_Android

        在前面几篇文章中,我们详细介绍了Android系统进程间通信机制Binder的原理,并且深入分析了系统提供的Binder运行库和驱动程序的源代码.细心的读者会发现,这几篇文章分析的Binder接口都是基于C/C++语言来实现的,但是我们在编写应用程序都是基于Java语言的,那么,我们如何使用Java语言来使用系统的Binder机制来进行进程间通信呢?这就是本文要介绍的Android系统应用程序框架层的用Java语言来实现的Binder接口了.        熟悉Android系统

asp.net 网银支付接口异步返回值

问题描述 asp.net 网银支付接口异步返回值 自己做网银支付,完全按照他们提供的demo来做,发现提交.支付都没有问题.就是在异步接收返回值的时候,通过日志发现 querystring里面的参数是空.跟网银那边要来了日志,自己用他们提交过来的数据模拟提交, 都是能接收到数据的.不知道怎么回事? 是不是如下原因: 1.在网银申请的时候填的域名与异步返回的url必须一致吗? 2.还是其他未发现的原因? 解决方案 这个问题看网银支付的API,应该有详细解释

asp.net实现天气接口 报错 远程服务器返回错误: (500) 内部服务器错误。

问题描述 asp.net实现天气接口 报错 远程服务器返回错误: (500) 内部服务器错误. string str = client.DownloadString("http://www.webxml.com.cn/WebServices/WeatherWebService.asmx/getWeatherbyCityName?theCityName=57494"); [WebException: 远程服务器返回错误: (500) 内部服务器错误.] System.Net.WebCli

谁能给个asp.net浦发银行支付接口开发包!

问题描述 谁有!谁做过!能给个asp.net浦发银行支付接口开发包吗! 解决方案 解决方案二:这个你要找浦发银行拿吧?别人给你个开发包,没有银行的证书,别说使用,你就是测试也没办法做啊.解决方案三:银行只有java,ASP的,没有asp.net(c#)的解决方案四:有的话也给我一份.解决方案五:引用2楼lixiang913的回复: 银行只有java,ASP的,没有asp.net(c#)的 我也在做这个,给的是Java文档,请问楼主搞定了吗?分享一下吧解决方案六:这种找银行,别人拿也有什么用?

有人做过asp.net工行支付接口吗?

问题描述 有人做过asp.net工行支付接口吗?HS通知的,发一份过来瞧瞧.谢谢qq:243990897 解决方案 解决方案二:高手我也求一份,解决方案三: 解决方案四:正解,不过一般很少用这种单独的某个银行接口,可以用支付宝里面集成的接口,有很多银行的,另外,其他三方支付平台也可以啊,快钱,网银在线,都不错啊.引用2楼subxli的回复: 最新中国工商银行网上银行B2C在线支付接口说明 解决方案五:支持2楼的3楼建议不错,楼主可以考虑呢解决方案六:API里应该有例子.解决方案七:支付宝/财付通

ASP获取客户端MAC地址(源代码)

客户端|源代码 本程序属于一种特别的方法.使用范围比较有限,而且有一定的危险性.借鉴了asp后门里的一些方法.下面是程序代码. <% dim remoteaddr if Request.ServerVariables("HTTP_X_FORWARDED_FOR")=empty then remoteaddr=Request.ServerVariables("REMOTE_ADDR") else remoteaddr=Request.ServerVariable