xavierlacot / joli.js

joli.js is an Activerecord-like javascript ORM, particularly suited for being used in the Appcelerator Titanium Mobile framework.
MIT License
267 stars 60 forks source link

Error evaluating rows.fieldCount() (IOS) #32

Open janhelleman opened 12 years ago

janhelleman commented 12 years ago

Hi,

in Appcelerator 3.0 (not released yet) line 586

                fieldCount = rows.fieldCount();

gives the error mentioned in the title. Seems to work by removing this call and replacing it by

                fieldCount = rows.fieldCount;

Cheers

pennadl commented 10 years ago

same problem here, just solved replacing with rows.fieldCount;

trs-mark commented 10 years ago

Thanks.