Initializes the command execution. @param ctx database context @param os output stream
(final Context ctx, final OutputStream os)
| 205 | * @param os output stream |
| 206 | */ |
| 207 | public final void init(final Context ctx, final OutputStream os) { |
| 208 | context = ctx; |
| 209 | options = ctx.options; |
| 210 | soptions = ctx.soptions; |
| 211 | out = PrintOutput.get(os); |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * Runs the command without permission, data and concurrency checks. |