of_setappend


pfcmain.pbl   >   pfc_n_ds   >   of_setappend   

Full name pfc_n_ds.of_setappend
Access public
Extend of integer
Return value integer
Prototype public function integer of_setappend(boolean)

Name Datatype
No Data

Name Datatype
No Data

public function integer of_setappend (boolean ab_append);//////////////////////////////////////////////////////////////////////////////
//
//	Function:  of_SetAppend
//
//	Access:  public
//
//	Arguments:
//	ab_append:  whether data will be appended to existing data when retrieving
//
//	Returns:  integer
//	 1 = success
//	-1 = error
//
//	Description:
//	Sets the behavior for retrieval so that data appends or is replaced
//
//////////////////////////////////////////////////////////////////////////////
//
//	Revision History
//
//	Version
//	5.0   Initial version
//
//////////////////////////////////////////////////////////////////////////////
//
//	Copyright © 1996-1997 Sybase, Inc. and its subsidiaries.  All rights reserved.
//	Any distribution of the PowerBuilder Foundation Classes (PFC)
//	source code by other than Sybase, Inc. and its subsidiaries is prohibited.
//
//////////////////////////////////////////////////////////////////////////////

// Check arguments
if IsNull (ab_append) then
	return -1
end if

ib_append = ab_append
return 1
end function

     
Name Owner
pfc_n_cst_security.of_initsecurity pfc_n_cst_security
pfc_n_cst_tvsrv_levelsource.of_register pfc_n_cst_tvsrv_levelsource
pfc_u_tv.of_setdatasource pfc_u_tv

     
Name Owner
systemfunctions.isnull systemfunctions

     
Full name
No Data

     
Name Scope
No Data