Bernhard König

Results 17 issues of Bernhard König

cross referencing this https://discourse.julialang.org/t/ann-juliaformatter-jl/48084/29 ``` using JuliaFormatter using Dash using DashCoreComponents using DashHtmlComponents using DashTable fileorig = joinpath(mktempdir(),"afile.jl") txtorig = """html_div(style=Dict("width"=>"300px"),[dcc_dropdown(id = "input-id0", options = [Dict(("label" => "some text"), ("value"...

bug
YASStyle

See example. ``` using JDF using DataFrames df = DataFrame(a=rand(3),b=rand(3),c=rand(3)) fi =raw"C:\temp\fi.jdf" @time JDF.save(fi, df) df = DataFrame(a=rand(3),b=rand(3)) @time JDF.save(fi, df) #the jdf folder on disk will 'keep' the data...

Hi Please see the example below. The way append! is implemented this fails. I searched for existing issues, as I expected this has come up in the past (and maybe...

decision
priority

Hi I am trying to extract the formula form a cell which links to an external file. Is there any way that I can get the link of [1] in...

Float (currency) is returned as DateTime value by `getdata` see attached file ``` using XLSX fi = raw"C:\temp\currency.xlsx" xf = XLSX.readxlsx(fi); sheetname = XLSX.sheetnames(xf)[1] sheet = xf[sheetname] cells = XLSX.getcellrange(sheet,"A1:A1")...

bug

Would it be possible to support a token_struct (SQL_COPT_SS_ACCESS_TOKEN) for Azure authentication? See the snippet below I note that I am happy to use PyCall to get the value of...

Great project, thanks! I would like to get the status of all monitors (number of up, down, pending, ....) I am not using any status pages right now. The uptime...

Looping over all monitors to get their status I tend to run into the below issue. Is it possible there is a type issue in your code? my code is...

Using Julia 1.10 I get the error below. I am not sure how to fix this though.... ``` WARNING: Method definition mysql_get_option(Ptr{Nothing}, Integer, Ref{UInt32}) in module API at C:\Users\bernhard.koenig\.julia\packages\MySQL\pGOcg\src\api\ccalls.jl:218 overwritten...

Recently, `MySQL.transaction(conn) do` is not working anymore for me. I am not sure if this is related to `DBInterface.jl` or MySQL.jl If I explicitly qualify `execute` as `DBInterface.execute(conn, "START TRANSACTION")`...