Oracle Objects for OLE C++ Class Library
Release 9.0.1

Part Number A90172-01

Home

Book List

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 © 1996-2001, Oracle Corporation.

All Rights Reserved.

Home

Book List

Contents