Enum SQLServerStatementColumnEncryptionSetting

  • All Implemented Interfaces:
    Serializable, Comparable<SQLServerStatementColumnEncryptionSetting>

    public enum SQLServerStatementColumnEncryptionSetting
    extends Enum<SQLServerStatementColumnEncryptionSetting>
    Specifies how data will be sent and received when reading and writing encrypted columns. Depending on your specific query, performance impact may be reduced by bypassing the Always Encrypted driver processing when non-encrypted columns are being used. Note that these settings cannot be used to bypass encryption and gain access to plaintext data.
    • Enum Constant Detail

      • USE_CONNECTION_SETTING

        public static final SQLServerStatementColumnEncryptionSetting USE_CONNECTION_SETTING
        if "Column Encryption Setting=Enabled" in the connection string, use Enabled. Otherwise, maps to Disabled.
      • RESULTSET_ONLY

        public static final SQLServerStatementColumnEncryptionSetting RESULTSET_ONLY
        Parameters will not be encrypted, only the ResultSet will be decrypted. This is an optimization for queries that do not pass any encrypted input parameters. Overrides the connection level setting for this command.
    • Method Detail

      • values

        public static SQLServerStatementColumnEncryptionSetting[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (SQLServerStatementColumnEncryptionSetting c : SQLServerStatementColumnEncryptionSetting.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SQLServerStatementColumnEncryptionSetting valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null