Oracle Objects for OLE C++ Class Library
Release 9.2

Part Number A95896-01
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents

Master Index

Feedback

GetFieldCount Method

Applies To

ODynaset

Description

This method returns the number of fields in each record.

Usage

int GetFieldCount(void) const

Return Value

The number of fields in each record; 0 on error.

Example

This example demonstrates GetFieldCount.

// open a database

ODatabase odb("ExampleDB", "scott", "tiger");

// open a dynaset

ODynaset dyn(odb, "select empno, ename, sal, comm from datatable");

// how many fields was that?

int nfields = dyn.GetFieldCount();

// nfields is 4


 
Oracle
Copyright © 1998, 2002 Oracle Corporation.

All Rights Reserved.
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents

Master Index

Feedback