Compare commits

..

2 Commits

Author SHA1 Message Date
ton f2ba243df0 update 2026-06-07 16:27:08 +07:00
ton 00225f3a06 update 2026-06-07 16:16:52 +07:00
+1 -1
View File
@@ -137,7 +137,7 @@ function generateInsertSQL(table_name::String, data::AbstractDict{String, Any})
values = String[]
for (key, value) in data
if key columnToInsert
if key keys(data)
push!(columns, string(key))
value_str = isa(value, AbstractString) ? "'$value'" : "$value"
push!(values, value_str)