nbjjy 发表于 2013-9-2 22:01:23

.net通过Odbc操作Sybase Iq

<connectionStrings>
<add name="qxzb" connectionString=" Driver={SYBASE IQ};Srvr=qxzb;Uid=dba;Pwd=sql;DB=qxzb"/>
</connectionStrings>
网页前台代码
<%@ Page Language="C#" AutoEventWireup="true"CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>无标题页</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
   
      <asp:GridView ID="GridView1" runat="server">
      </asp:GridView>
   
    </div>
    </form>
</body>
</html>

网页后台代码
using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Data.Odbc;
public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
      OdbcConnection con = new OdbcConnection(ConfigurationManager.ConnectionStrings["qxzb"].ConnectionString.ToString());
      try
      {
            con.Open();
            OdbcCommand cmd = new OdbcCommand("select * from qxzb order by id",con);
            OdbcDataReader rd = cmd.ExecuteReader();
            this.GridView1.DataSource = rd;
            this.GridView1.DataBind();
            con.Close();
      }
      catch (Exception ex)
      {
            Response.Write(ex.Message);
      }
    }
}

页: [1]
查看完整版本: .net通过Odbc操作Sybase Iq