0

I am using android.database.sqlite.SQLiteProgram and I am using bindAllArgsAsStrings(args) function. Currently this is compatible only for API 11 and above. Is there any alternative to this function or any library that I can use to get around this limitation.

4

1 回答 1

1

您需要以编程方式执行此操作:

for(int i=0; i<args.length; i++)
   bindString(i+1, args[i]);
于 2013-11-13T16:35:47.827 回答