1MONGOC_URI_SET_OPTION_AS_INT64(3) libmongoc MONGOC_URI_SET_OPTION_AS_INT64(3)
2
3
4
6 mongoc_uri_set_option_as_int64 - mongoc_uri_set_option_as_int64()
7
9 bool
10 mongoc_uri_set_option_as_int64 (const mongoc_uri_t *uri,
11 const char *option,
12 int64_t value);
13
15 • uri: A mongoc_uri_t.
16
17 • option: The name of an option, case insensitive.
18
19 • value: The new value.
20
22 Sets an individual URI option, after the URI has been parsed from a
23 string.
24
25 Only known options of type int32 or int64 can be set. For 32-bit inte‐
26 ger options, the function returns false when trying to set a 64-bit
27 value that exceeds the range of an int32_t. Values that fit into an
28 int32_t will be set correctly. In both cases, a warning will be emit‐
29 ted.
30
31 Updates the option in-place if already set, otherwise appends it to the
32 URI's bson_t of options.
33
35 True if successfully set (the named option is a known option of type
36 int64).
37
38 SEE ALSO:
39 mongoc_uri_option_is_int64()
40
41 mongoc_uri_set_option_as_int32()
42
43
45 MongoDB, Inc
46
48 2017-present, MongoDB, Inc
49
50
51
52
531.21.1 Mar 02, 2022MONGOC_URI_SET_OPTION_AS_INT64(3)