November 2024 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Tag Archives: actionscript3
AIR and SQLite transaction issues
Nice thing about SQLite in Adobe AIR are transactions, you start them with begin method of SQLConnection instance and then finish with rollback or commit methods. Problem occurs when you start transaction with default arguments and then try to stop … Continue reading
‘unique’ as column name in SQLite table and SQLError
Hi, I have just learned that “unique” is not a good name for column name when creating table. If you try to use it then you will get following meaningless (at least to me) error: SQLError: ‘Error #3115: SQL Error.’, … Continue reading
Posted in actionscript, air for android, flash, SQLite3 (in AIR)
Tagged actionscript3, Error #3115, SQLError, SQLite
Comments Off on ‘unique’ as column name in SQLite table and SQLError
SQLite – open and openAsync methods NOT create folders for created database file
If you run into problems with connecting to the database and you are using open or openAsync with CREATE mode then check if folder location exists for your database file, following code will generate SQLError SQLError: ’Error #3125: Unable to … Continue reading
Posted in actionscript, air for android, flash, SQLite3 (in AIR)
Tagged actionscript3, air, air for android, createDirectory, detailID:’1001’, Error #3125, SQLConection, SQLError, SQLite
Comments Off on SQLite – open and openAsync methods NOT create folders for created database file
Rectangle with “sorted” edges
In some situation you would like to reassure that given Rectangle object have “top-down, left-right” order you can do it using following two snippets this creates “normalized” copy of the given rectangle this modifies given rectangle directly
Posted in actionscript, flash
Tagged actionscript3, rectangle, snippets
Comments Off on Rectangle with “sorted” edges
try catch mistakes
To cope with errors in code we can do many thing, among many approaches the most powerful is to use “try catch finally” block around the code that might cause trouble (one we know that it throws Errors) but what … Continue reading
Posted in actionscript, flash
Tagged actionscript3, debugging, try catch
Comments Off on try catch mistakes