JSL Syntax Reference > JSL Messages > Data Connector Messages
Publication date: 07/24/2024

Data Connector Messages

This section contains JSL messages for configurable data connectors.

Data Connector Metadata Messages

metadata<<Get Description()

Gets the data connector description.

metadata<<Get Driver()

Gets the data connector driver, if there is one.

metadata<<Get Name()

Gets the data connector name.

metadata<<Get Path()

Gets the data connector path.

metadata<<Get Type()

Gets the data connector type.

metadata<<Set Description(description)

Sets the data connector description.

metadata<<Set Name(name)

Sets the data connector name.

Data Connector Registry Messages

dc<<Get(name)

Retrieves a data connector from the registry.

dc<<Get Available()

Retrieves a list of available data connectors in the registry.

dc<<Get Metadata(name)

Gets a data connector’s metadata from the registry.

dc<<Register(Path(path), <Name(name)>, <Description(description)>)

Description

Adds a data connector to the registry.

Required Arguments

path

The path to register the data connector to.

name

The name of the data connector.

Optional Arguments

description

The description of the data connector.

Example

Names Default To Here( 1 );
 
Data Connector Registry() << Register(
	Path( "$DOCUMENTS/my connector.jmpdc" ),
	Name( "My Data Connector" )
);

dc<<Unregister(name)

Removes a data connector from the registry.

Want more information? Have questions? Get answers in the JMP User Community (community.jmp.com).