comparison src/main/java/org/monetdb/mcl/net/Parameter.java @ 916:2ec67179aa32

correct some Parameter descriptions
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Wed, 24 Jul 2024 19:06:54 +0200 (9 months ago)
parents 778959b2e0a4
children df18aa5c8a61
comparison
equal deleted inserted replaced
915:4c716a3030e3 916:2ec67179aa32
41 FETCHSIZE("fetchsize", ParameterType.Int, null, "alias for replysize, specific to jdbc", false), 41 FETCHSIZE("fetchsize", ParameterType.Int, null, "alias for replysize, specific to jdbc", false),
42 HASH("hash", ParameterType.Str, "", "specific to jdbc", false), 42 HASH("hash", ParameterType.Str, "", "specific to jdbc", false),
43 DEBUG("debug", ParameterType.Bool, false, "enable tracing of socket communication for debugging", false), 43 DEBUG("debug", ParameterType.Bool, false, "enable tracing of socket communication for debugging", false),
44 LOGFILE("logfile", ParameterType.Str, "", "when debug is enabled its output will be written to this logfile", false), 44 LOGFILE("logfile", ParameterType.Str, "", "when debug is enabled its output will be written to this logfile", false),
45 SO_TIMEOUT("so_timeout", ParameterType.Int, 0, "abort if network I/O does not complete in this many milliseconds, 0 means no timeout", false), 45 SO_TIMEOUT("so_timeout", ParameterType.Int, 0, "abort if network I/O does not complete in this many milliseconds, 0 means no timeout", false),
46 CLOB_AS_VARCHAR("treat_clob_as_varchar", ParameterType.Bool, true, "return CLOB/TEXT data as type VARCHAR instead of type CLOB", false), 46 CLOB_AS_VARCHAR("treat_clob_as_varchar", ParameterType.Bool, true, "map CLOB/TEXT data to type VARCHAR instead of type CLOB", false),
47 BLOB_AS_BINARY("treat_blob_as_binary", ParameterType.Bool, true, "return BLOB data as type BINARY instead of type BLOB", false), 47 BLOB_AS_BINARY("treat_blob_as_binary", ParameterType.Bool, true, "map BLOB data to type BINARY instead of type BLOB", false),
48 48
49 CLIENT_INFO("client_info", ParameterType.Bool, true, "whether to send ClientInfo when connecting", false), 49 CLIENT_INFO("client_info", ParameterType.Bool, true, "whether to send ClientInfo when connecting", false),
50 CLIENT_APPLICATION("client_application", ParameterType.Str, "", "application name to send in ClientInfo", false), 50 CLIENT_APPLICATION("client_application", ParameterType.Str, "", "application name to send in ClientInfo", false),
51 CLIENT_REMARK("client_remark", ParameterType.Str, "", "application name to send in ClientInfo", false), 51 CLIENT_REMARK("client_remark", ParameterType.Str, "", "any client remark to send in ClientInfo", false),
52 ; 52 ;
53 53
54 public final String name; 54 public final String name;
55 public final ParameterType type; 55 public final ParameterType type;
56 private final Object defaultValue; 56 private final Object defaultValue;