使GBASE南大通用Connection 执行 CommandText 属性指定的 SQL 语句,并使用CommandBehavior 的一个值构建 GBaseDataReader。
? 语法
[Visual Basic]
Public Function ExecuteReader ( _
behavior As CommandBehavior _
) As GBaseDataReader
[C#]
public GBaseDataReader ExecuteReader(CommandBehavior behavior);
? 参数
1) behavior :CommandBehavior 的一个值。
? 返回值
一个 GBaseDataReader 对象。
? 注释
当 ComGBASE南大通用mandType 属性是 StoredProcedure 时, CommandText 属性应该设置为存储过程的名字。在用户调用 Execute 方法的时候,命令执行这个存储过程。
GBaseDataReader 可以支持使用大二进制值的特殊模式,使得读取更有效率。对于更多信息,参考 SequentialAccess 对于 CommandBehavior 的设置。
当使用 GBaseDataReader 的时候,相关的 GBaseConnection 忙于服务GBaseDataReader。此时,没有其它的操作可以在 GBaseConnection 上执行除非关闭它。这个情况会持续到调用 GBaseDataReader 的 Close 方法。如果GBaseDataReader 使用设置为 CloseConnection 的 CommandBehavior 创建,关闭GBaseDataReader 也会自动关闭连接。
注意,当使用 SingleRow 行为调用 ExecuteReader 的时候,用户应该小心使用 SQL 中的 limit 子句,这会让客户端返回所有的行(到达给定的上限)。Read方法还会返回 false,但是所有的行放入客户端会造成性能上的冲击。如果limit子句不需要,就应该避免使用。