Adobe Air SQLError: ‘Error #3119: Database file is currently locked.’, details:’null’, operation:’execute’

For the longest time I was having issues with this Adobe Air Error and its description, the main issue is that the “details” for this error are “null”. We do get the description that the database is locked but no details on file name where the error occur or line number. If you do a […]

Adobe Air CreateDirectory common error

If you need to create a directory from Air and you dont know how, mostlikely you will use the Adobe Air Documentation and use something as the following: [js] var directory = air.File.documentsDirectory; directory = directory.resolvePath(“AIR Test”); air.File.createDirectory(directory); air.trace(directory.exists); // true [/js] it all looks nice and makes sense but in the real world it […]