@ThomasTJdev7h @mikra

what I meant was supporting something like this:
    
    
    var i_am_nil: Option[string] # this will be none
    var i_am_not_nil: Option[string] = some("foo") # this will be none
    discard insertID(db, sql"INSERT INTO myTable (name, name2) VALUES (?, ?)", 
i_am_nil, i_am_not_nil)
    
    
    Run

Reply via email to