asp.net连接oralce问题
<%@ 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" DataSourceID="oracle_DataSource">
</asp:GridView>
<asp:SqlDataSource ID="oracle_DataSource" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>" ProviderName="<%$ ConnectionStrings:ConnectionString.ProviderName %>" SelectCommand="SELECT * FROM [CLASS]"></asp:SqlDataSource>
</div>
</form>
</body>
</html>
注意,默认的[]要去掉。 微软呀!!!!!居然这样老套自己sql server的表示给oracle!!!不够专业。
不然会出错。
在执行命令过程中,发生了一个或多个错误。
ORA-00903: invalid table name
补充:asp.net教程,.Net开发