io.vertx.mssqlclient.impl.codec.ProcId Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2011-2021 Contributors to the Eclipse Foundation
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
* which is available at https://www.apache.org/licenses/LICENSE-2.0.
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
*/
package io.vertx.mssqlclient.impl.codec;
/**
* The number identifying the special stored procedure to be executed.
*/
@SuppressWarnings("unused")
public class ProcId {
public static final int Sp_Cursor = 1;
public static final int Sp_CursorOpen = 2;
public static final int Sp_cursorPrepare = 3;
public static final int Sp_CursorExecute = 4;
public static final int Sp_CursorPrepExec = 5;
public static final int Sp_CursorUnprepare = 6;
public static final int Sp_CursorFetch = 7;
public static final int Sp_CursorOption = 8;
public static final int Sp_CursorClose = 9;
public static final int Sp_ExecuteSql = 10;
public static final int Sp_Prepare = 11;
public static final int Sp_Execute = 12;
public static final int Sp_PrepExec = 13;
public static final int Sp_PrepExecRpc = 14;
public static final int Sp_Unprepare = 15;
private ProcId() {
// Constants class
}
}