[This is preliminary documentation and is subject to change.]

Updates a Customer and all its related information into the database.

Namespace:  OfficeClip.DBLayer.Projects
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public int UpdateAccountName(
	int accountId,
	string name,
	string screenName
)
Visual Basic (Declaration)
Public Function UpdateAccountName ( _
	accountId As Integer, _
	name As String, _
	screenName As String _
) As Integer
Visual C++
public:
int UpdateAccountName(
	int accountId, 
	String^ name, 
	String^ screenName
)

Parameters

accountId
Type: System..::.Int32
the unique id of the account
name
Type: System..::.String
The name of the account
screenName
Type: System..::.String
the screen name of the account

Return Value

0 when successful, -1 in case of an error.

See Also