PostgreSQLLargeObject.Tell

From Xojo Documentation

Method

PostgreSQLLargeObject.Tell() As Integer

Supported for all project types and targets.

Returns the current position of the large object. The same as Position.

Example

Displays the current postion within the large object:

// db is a previously connected PostgreSQLDatabase
// objectID is an integer referring to a previously created large object
Var largeObject As PostgreSQLLargeObject
largeObject = db.OpenLargeObject(objectID)

Var currentPos As Integer = largeObject.Tell