Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> 0040, C++ and arrays

0040, C++ and arrays

From: Vladimir Kajalin <vkajalin_at_hireright.ee>
Date: Fri, 26 Mar 1999 18:20:16 +0200
Message-ID: <36fbb39f@news.infonet.ee>


Hi All

I want to trace all db parameters and have a problem with arrays, I can get names and values of simple parameters (string and number) But how to trace arrays?

// tracing simple parameters
OParameterCollection params=pDB->GetParameters(); for( int i=0; i < params.GetCount(); i++ ) {
  OParameter param = params.GetParameter(i);   CString strName = param.GetName();
  int nType = param.GetServerType();

  OValue val;
  param.GetValue(&val);
  CString strValue = (const char*)val;
}

Vladimir Received on Fri Mar 26 1999 - 10:20:16 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US