The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

SQL::QueryBuilder::WebApi::ActiveQueryBuilderApi

Load the API package

use SQL::QueryBuilder::WebApi::Object::ActiveQueryBuilderApi;

All URIs are relative to https://webapi.activequerybuilder.com

Method | HTTP request | Description ------------- | ------------- | ------------- get_query_columns_post | POST /getQueryColumns | transform_sql_post | POST /transformSQL |

get_query_columns_post

ARRAY[QueryColumn] get_query_columns_post(query => $query)

Returns list of columns for the given SQL query.

Example

use Data::Dumper;

my $api_instance = SQL::QueryBuilder::WebApi::ActiveQueryBuilderApi->new();
my $query = SQL::QueryBuilder::WebApi::Object::SqlQuery->new(); # SqlQuery | Information about SQL query and it's context.

eval { 
    my $result = $api_instance->get_query_columns_post(query => $query);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ActiveQueryBuilderApi->get_query_columns_post: $@\n";
}

Parameters

Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- query | SqlQuery| Information about SQL query and it's context. |

Return type

ARRAY[QueryColumn]

Authorization

No authorization required

HTTP request headers

[Back to top] [Back to API list] [Back to Model list] [Back to README]

transform_sql_post

TransformResult transform_sql_post(transform => $transform)

Transforms the given SQL query according to the commands provided in this request. You can add constraints, hide some of the resultset columns, chang sorting or limit rows of resultset. All transformations can only lead to reorganization or limitation of the resultset data. This means that it's impossible to get transformed SQL that reveals any other data than the data retutned by original query.

Example

use Data::Dumper;

my $api_instance = SQL::QueryBuilder::WebApi::ActiveQueryBuilderApi->new();
my $transform = SQL::QueryBuilder::WebApi::Object::Transform->new(); # Transform | SQL transformation parameters and commands.

eval { 
    my $result = $api_instance->transform_sql_post(transform => $transform);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ActiveQueryBuilderApi->transform_sql_post: $@\n";
}

Parameters

Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- transform | Transform| SQL transformation parameters and commands. |

Return type

TransformResult

Authorization

No authorization required

HTTP request headers

[Back to top] [Back to API list] [Back to Model list] [Back to README]