TempTablesManager

Properties:

Tables

Methods:

Close

Constructors:

Default

Description:

Use it to store temporary tables. If an object is destroyed or closed, temporary tables in the object are deleted.
If a temporary table is creaded, used and destroyed in one query batch, then there is no need to create a temporary tables manager.

Availability:

Server, thick client, external connection, Mobile application (server).

Example:

TempTablesManager = New TempTablesManager;
Query = New Query;
Query.TempTablesManager = TempTablesManager;

Query.Execute();
Query.Text = "SELECT * FROM MainTMP";
ValTabl = Query.Execute().Unload();

See also:

Query, property TempTablesManager

    

1C:Enterprise Developer's Community