Bikram Chatterjee
Bikram Chatterjee
### Pre-Check ### > - For questions or support, it helps to include context around your project or problem If there isn't already way to do this (please point me...
Hi, I am trying to encode maps with emoji surrogate pairs. But when I am attempting: ```erlang jsx:encode(#{emoji => }). % The result is ``` In which way should I...
## `FUNCTION_NAME` `Mod =` ```erlang -module(test). -export([t/0]). -define(Y, 1). t(A, B) when A > B -> {?Y, ?FUNCTION_NAME}. ``` ```erlang > {ok, Tokens, _} = erl_scan:string(Mod, {0,1}). {ok, [{'-',{2,1}},{atom,{2,2},module}, {'(',{2,8}},...
Hi, In confluent (and perhaps also in other AVRO schema check tools) this following schema passes the validation check. ```json { "type": "record", "name": "Level0", "namespace": "root.namespace", "fields": [ {...
Hi, I have been using a fork of your work for a while now. Also made some support contribution to it. If you are interested, here is a pull request...
cc @acautin @stoch Ref : https://docs.oracle.com/cd/B28359_01/appdev.111/b28395/oci17msc002.htm#i578721 ```cpp oraub8 loblenc = 0; checkerr(&r, OCILobRead2((OCISvcCtx*)_svchp, (OCIError*)_errhp, lob, /* oraub8 *byte_amtp (IN/OUT) IN - The number of bytes to read from the database....
Create Table: ```sql create table raw_clob(col_raw raw(2000)) ``` **Note:** data is corrupted when read through select! ```erlang StmtInsert = OciSession:prep_sql(). ok = StmtInsert:bind_vars([{, 'SQLT_BIN'}]). Data = , {rowids, [_]} =...
Ref : [Using Continuous Query Notification (CQN)](https://docs.oracle.com/database/121/ADFNS/adfns_cqn.htm#ADFNS018)
```erlang > dderloci_utils:oranumber_encode(). % Compact represetation > dderloci_utils:oranumber_encode(). % Compact represetation (automatic trailing zeros removal) > oci_util:from_num(). "10.5" > float_to_list(10.5, [{decimals,4}]). "10.5000" > oci_util:to_num(float_to_list(10.5, [{decimals,4}])). % Trailing zeros preserved >...