App::Sqitch::Engine::snowflake(3pm) | User Contributed Perl Documentation | App::Sqitch::Engine::snowflake(3pm) |
App::Sqitch::Engine::snowflake - Sqitch Snowflake Engine
my $snowflake = App::Sqitch::Engine->load( engine => 'snowflake' );
App::Sqitch::Engine::snowflake provides the Snowflake storage engine for Sqitch.
"uri"
Returns the Snowflake database URI name. It starts with the URI for the target and builds out missing parts. Sqitch looks for the host name in this order:
The database name is determined by the following methods:
Other attributes of the URI are set from the "account", "username" and "password" attributes documented below.
"account"
Returns the Snowflake account name, or an exception if none can be determined. Sqitch looks for the account code in this order:
username
Returns the snowflake user name. Sqitch looks for the user name in this order:
password
Returns the snowflake password. Sqitch looks for the password in this order:
"warehouse"
Returns the warehouse to use for all connections. This value will be available to all Snowflake change scripts as the &warehouse variable. Sqitch looks for the warehouse in this order:
"role"
Returns the role to use for all connections. Sqitch looks for the role in this order:
"initialized"
$snowflake->initialize unless $snowflake->initialized;
Returns true if the database has been initialized for Sqitch, and false if it has not.
"initialize"
$snowflake->initialize;
Initializes a database for Sqitch by installing the Sqitch registry schema.
"snowsql"
Returns a list containing the "snowsql" client and options to be passed to it. Used internally when executing scripts.
David E. Wheeler <david@justatheory.com>
Copyright (c) 2012-2022 iovation Inc., David E. Wheeler
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2022-10-15 | perl v5.34.0 |