Difference between revisions of "PRINT R()"
From Recital Documentation Wiki
Peterkelly (Talk | contribs) (→Example) |
Yvonnemilne (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | {{ | + | {{SELECT INTO OBJECT?}} |
==Purpose== | ==Purpose== | ||
Line 14: | Line 14: | ||
==Description== | ==Description== | ||
− | + | The PRINT_R() function is used to display information about the specified object, <object-ref>, in a readable format. | |
==Example== | ==Example== |
Revision as of 11:57, 6 November 2009
Purpose
Display object information in a readable format
Syntax
PRINT_R(<object-ref>)
See Also
ACLASS(), ADDPROPERTY(), AMEMBERS(), ARRAY(), CLASS, COMPOBJ(), CREATEOBJECT(), DEFINE CLASS, DODEFAULT(), METHOD, NEWOBJECT(), OBJECT(), REMOVEPROPERTY(), SET CLASSLIBRARY, WITH
Description
The PRINT_R() function is used to display information about the specified object, <object-ref>, in a readable format.
Example
open database southwind select * from shippers into object shipobj print_r(shipobj)
Dynarray (refcnt=0) ( [row1] => Dynarray ( [shipperid] => 1 [companyname] => Speedy Express [phone] => (503) 555-9831 ) [row2] => Dynarray ( [shipperid] => 2 [companyname] => United Package [phone] => (503) 555-3199 ) [row3] => Dynarray ( [shipperid] => 3 [companyname] => Federal Shipping [phone] => (503) 555-9931 ) )
class NullData dynamic property mCHARACTER property mNUMERIC endclass oNULLDATA = new NullData() oNULLDATA.mCHARACTER = "" oNULLDATA.mNUMERIC = 0 oNULLDATA.mLOGICAL = .F. print_r(oNULLDATA)
Object (refcnt=0) ( [mcharacter] => [mnumeric] => 0 [mlogical] => False )
Products
Recital, Recital Server