Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,6 @@ result = Jorm.getfirst(db, BlogArticle,"title", "First Title")
println(result)




for row in results
println(row.id)
println(row.content)
Expand Down
2 changes: 1 addition & 1 deletion src/Jorm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ end

"""
getfirst(db::SQLite.DB, model, column,value)
Returns a given model object when given the column and the search value
Returns a given model object when given the column and the value to search for
"""
function getfirst(db::SQLite.DB, model, column::String,value)
query = getfirst_sql(model,column)
Expand Down