2 title: allowedCallPrefixes
3 date: 2019-09-27T18:51:08+02:00
18 Configures which name prefixes are allowed for statements that are calling stored procedures. It defaults to `call, execute, evaluate, eval`.
20 ## Configuration Options
22 ### Option: 'call, execute, evaluate, eval'
24 The default value of the `allowedCallPrefixes` configuration option is `false` which disables the validation of names according to your configured prefixes.
28 Changing the `allowedCallPrefixes` configuration option to `do` only allows names with the prefix `do` to call stored procedures.
34 In order to use `YoSQL` together with [Maven](https://maven.apache.org/), take a look at the tooling [documentation
35 for Maven](../../tooling/maven).
41 <groupId>wtf.metio.yosql</groupId>
42 <artifactId>yosql-tooling-maven</artifactId>
46 <allowedCallPrefix>call</allowedCallPrefix>
47 <allowedCallPrefix>do</allowedCallPrefix>
48 </allowedCallPrefixes>
58 In order to use `YoSQL` together with [Gradle](https://gradle.org/), take a look at the tooling [documentation for Gradle](../../tooling/gradle).
67 allowedCallPrefixes = listOf("call", "do")
74 In order to use `YoSQL` together with [Bazel](https://bazel.build/), take a look at the tooling [documentation for
75 Bazel](../../tooling/bazel).
79 In order to use YoSQL on the command line, take a look at the tooling [documentation for CLI](../../tooling/cli).
82 $ yosql --repositories-allowed-call-prefixes="call, do"
85 The shorter form is available as well:
88 $ yosql --allowed-call-prefixes="call, do"