dbsync_core.t_user type

The t_user type defines a record to hold DB Sync user information.

Syntax

TYPE t_user RECORD
    user_id dbsync_core.t_user_id,
    user_auth dbsync_core.t_user_auth,
    user_name dbsync_core.t_user_name,
    user_status dbsync_core.t_user_status
END RECORD
  1. user_id: Defines the unique user identifier (string).
  2. user_auth: Defines the user password (in clear).
  3. user_name: Containes the name of the user.
  4. user_status: Indicates if the user is active or inactive.

Usage

Define a variable of type t_user to hold user information returned by the dbsync_app.get_user_info() function.