edbi error 1046
- Posted by euphoric (admin) Aug 06, 2011
- 1114 views
I've got this code:
public function get_solitaire_sets() sequence sets = {} edbi:dbr_handle res = edbi:query_rows("select solitaire_set_name from solitaire_sets") if atom(res) then puts(1,"\nEDBI Error: " & error_message( res ) ) else for t=1 to length(res) do sets = append(sets,res[t][1]) end for end if return sets end function
The variable res ends up being 1046. This crashes error_message(). Anybody know what's up with that?