c# oracle datareader,OracleDataReader

Advances the OracleDataReader to the next record.

public:

virtual bool Read();

public:

override bool Read();

public bool Read ();

public override bool Read ();

abstract member Read : unit -> bool

override this.Read : unit -> bool

override this.Read : unit -> bool

Public Function Read () As Boolean

Public Overrides Function Read () As Boolean

返回

如果存在更多行,则为 true;否则为 false。true if there are more rows; otherwise, false.

实现

示例

The following example creates an OracleConnection, an OracleCommand, and an OracleDataReader. 该示例将读取数据,并将其写出到控制台。The example reads through the data, writing it out to the console. Finally, the example closes the OracleDataReader, then the OracleConnection.

private static void ReadData(string connectionString)

{

string queryString = "SELECT OrderID, CustomerID FROM Orders";

using (OracleConnection connection = new OracleConnection(connectionString))

{

OracleCommand command = new OracleCommand(queryString, connection);

connection.Open();

OracleDataReader reader;

reader = command.ExecuteReader();

// Always call Read before accessing data.

while (reader.Read())

{

Console.WriteLine(reader.GetInt32(0) + ", " + reader.GetString(1));

}

// Always call Close when done reading.

reader.Close();

}

}Public Sub ReadData(ByVal connectionString As String)

Dim queryString As String = _

"SELECT OrderID, CustomerID FROM Orders"

Using connection As New OracleConnection(connectionString)

Dim command As New OracleCommand(queryString, connection)

connection.Open()

Dim reader As OracleDataReader

reader = command.ExecuteReader()

' Always call Read before accessing data.

While reader.Read()

Console.WriteLine(reader.GetInt32(0) & ", " & reader.GetString(1))

End While

' Always call Close when done reading.

reader.Close()

End Using

End Sub

注解

The default position of the OracleDataReader is prior to the first record. 因此,您必须调用 Read 以开始访问任何数据。Therefore, you must call Read to begin accessing any data.

OracleDataReader在任意给定时间,都可以打开多个。More than one OracleDataReader can be open at any given time.

适用于

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值