we need to check the API version of the device before making some of these calls

This commit is contained in:
Mike 2012-04-10 21:56:36 -04:00
parent 597cafd93c
commit ba20782784

View File

@ -228,6 +228,8 @@ public class SQLitePlugin extends Plugin {
try {
for (int i = 0; i < colCount; ++i) {
key = cur.getColumnName(i);
if(android.os.Build.VERSION.SDK_INT >= 11)
{
switch(cur.getType (i))
{
case Cursor.FIELD_TYPE_NULL:
@ -247,6 +249,11 @@ public class SQLitePlugin extends Plugin {
break;
}
}
else
{
row.put(key, cur.getString(i));
}
}
fullresult.put(row);
} catch (JSONException e) {