Hi,
I'm being hit by issue #16 where executeSql(String, Object[]) reports
a mismatch between the number "?" and arguments when executing in
development mode.
Have you made any progress on this?
I've been spending some time trying to figure out the problem. A GWT
build using the latest code check out from the SVN trunk does not fix
the problem.
I've done a bunch of different tests and it almost seems like the
Object array is not being passed to the browser when running in dev
mode. All of the following result in the error "number of '?'s in
statement string does not match argument count":
tx.executeSql("replace into dbtest (name) values (?)", null);
tx.executeSql("replace into dbtest (name) values (?)", new Object[]
{"hi"});
tx.executeSql("replace into dbtest (name) values (?)", new Object[]
{"hi", "lo"});
dbtest has a single TEXT column.
Thanks for you help,
Mike.
--
You received this message because you are subscribed to the Google Groups "gwt-mobile-webkit-users" group.
To post to this group, send email to
gwt-mobile-...@googlegroups.com.
To unsubscribe from this group, send email to
gwt-mobile-webkit...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/gwt-mobile-webkit-users?hl=en.