0
votes
0answers
9 views

How to use babylon glossaries as SQLite DB?

I want to use babylon BGL files in my Adobe Air project. I think if I converted BGL to SQLite DB, I would use them in my project. However, I don't know how to do that. I tried pyglossary from ...
2
votes
1answer
41 views

Need function to wait until event handler has finished before executing next function

I have seen many similar questions, but none have actually answered my issue. I would think it would be simple, but I guess it is not. I need to call a function 20 times, each with a different set ...
2
votes
1answer
69 views

Populating combobox with data from a datagrid, receiving data from a sqlite database

I'm still a newbie to Adobe Air/Flex, and still fairly new with SQL. I've downloaded this (http://coenraets.org/blog/2008/11/using-the-sqlite-database-access-api-in-air…-part-1/) code and have been ...
1
vote
1answer
31 views

Check Adobe Air SQLite Db for corruption

I have an Adobe Air SQLite db in my application. I was wondering if there was anyway for me to test for corruption provided the db opens ? PRAGMA statements aren't allowed, so that is out of the ...
1
vote
0answers
18 views

sqlite disk i/o error when performing SELECT statement [duplicate]

i had the follwing sql statement; SELECT customer_name, cst_id FROM master_customer ORDER BY cst_id DESC; *** ERROR *** : Error #3128: Disk I/O error occurred. i checked the db access ...
0
votes
0answers
30 views

SQLite Prepared Select Statement

I am using SQLite with Adobe Air. My question is can I have a prepared statement that has a param-holder in my SELECT. For instance is this possible ? INSERT INTO 'tablename' ( firstcol, ...
0
votes
1answer
36 views

Is it possible to add more than 500 rows of data into a database in 1 query in SQLite in AIR 3.6 project?

I'm creating iPad app in Flash (AIR 3.6). I need to synchronize tons of data using SQLite database engine. I'm receiving data from the server in JSON format which needs to be converted to Vector of ...
0
votes
0answers
174 views

AS3 - How to use existing database/sqlite in AIR for Android?

I want to create app from adobe AIR for Android. Most articles (even from adobe documentations) just talking about create new database first (using SQL CREATE syntax), then create the app. like this ...
0
votes
1answer
30 views

Is it possible to save data to sqlite using flash player plugin rather then AIR?

We have a flash web app. we thought to use local storage to enhance performance and responsiveness. LSO falls short to sqlite. AIR is too far on the roadmap for us productwise, therefore wanted to ask ...
0
votes
0answers
70 views

Adobe Air SQLite transaction won't begin

TL;DR sqlConnection.begin() works in debug mode, times out in normal run mode Hello Everyone, I have an application and I am running unit/integration tests that involve using SQLite and Adobe Air. ...
1
vote
1answer
65 views

Sqlite date comparison in different tables

I'm using following query to compare Date values. select * from OFFER where date('now') >= Datetime(START_DATE) and date('now') <= Datetime(END_DATE) Its working fine..But I cant find ...
0
votes
1answer
164 views

Adobe Air SQLite synchronization

I want to develop a desktop application in Adobe Air with persisted local storage that will be catered by Adobe Air's SQLite. I want to implement row based synchronization and I've created the ...
0
votes
0answers
27 views

Store MovieClip to SQLite

Can I store a movieclip into SQLite? I've tried to convert the movieclip into ByteArray and then store it to BLOB column, but to no avail: var ba:ByteArray = new ByteArray(); ...
0
votes
1answer
82 views

Adobe AIR SQLResult listener reached, but no data in SQLite

I'm currently working on a project using AIR and Flex that uses a remote data source to persist data locally in a SQLite database. Currently, there's a lot of copy and paste code that I was trying to ...
0
votes
2answers
167 views

Time calculation by using sqlite and Adobe AIR

Now I'm working on employee timesheet application by using SQlite and Adobe AIR (Action script). I am struggling to calculate the Time interval calculation from sqlite (i.e every work of an employee ...
4
votes
2answers
90 views

Just started getting AIR SQLite Error 3182 Disk I/O error occurred

We have a new beta version of our software with some changes, but not around our database layer. We've just started getting Error 3128 reported in our server logs. It seems that once it happens, it ...
0
votes
1answer
180 views

AIR SQLite Database

I have an AIR application and I would like use SQLite instead of an XML file to populate the database. I've seen people create the database on the fly and import the data when the application first ...
1
vote
1answer
195 views

Adobe Air SQLite Misunderstanding

I am attempting to use a SQLite DB with an AIR project and there seem to be a few questions that I just can't seem to find the answers to on the internet, especially ones concerning best practices. ...
1
vote
0answers
136 views

How to save user data when updating AIR mobile app (iOS and Android)

I save all user data in the SQLite database. These data include settings, a content, purchased items, etc. However, when user update the app (on market), all these *.db files are overwritten and the ...
0
votes
1answer
96 views

Passing SQL Results in labels

I have a select statement that queries the top 5 players who got high scores selectStmt = new SQLStatement(); selectStmt.sqlConnection = conn; selectStmt.text="SELECT name, level, score ...
0
votes
0answers
124 views

Importing CSV content into Sqlite database in Adobe Air

I have a rather large csv file (~150MB) which I need to load into the database. I have tried several approaches, the best one involves grouping the INSERT statements into a database transaction. ...
0
votes
1answer
333 views

SQL Error :“No such table”

I am trying to troubleshoot why my code returned null for all my queries and finally found that sql query returns nothing. I created a new AIR document (s:WindowedApplication) with minimalistic code: ...
0
votes
1answer
443 views

Is it possible to use localStorage and window.openDatabase in Adobe AIR?

I have a working offline application (.html + .js). It uses localStorage and an SQLite database accessed using the openDatabase method. however, when I try to convert this to Adobe AIR using the Adobe ...
0
votes
1answer
54 views

Can't get full result when joining the same table several times

I have this SQL code: SELECT t1.offname, t2.offname, t3.offname, t4.offname, t5.offname, t6.offname, t7.offname FROM AS_ADDROBJ_29 t1 LEFT JOIN AS_ADDROBJ_29 t2 ON t1.parentguid = t2.aoguid AND ...
1
vote
1answer
128 views

flex local database lastInsertId = 0

var insertReq:SQLStatement = new SQLStatement(); insertReq.addEventListener(SQLErrorEvent.ERROR, dbErrorHandler); insertReq.sqlConnection = conn; insertReq.text = "INSERT INTO table1 (inputTime) ...
1
vote
0answers
76 views

Async and sync connection open at the same time

Is it possible in an adobe air app, to have a sync and a async connection open for the same sqlite database? The async connection would only be used for read operations.
0
votes
1answer
200 views

Encrypted SQLite database cannot be attached: “Unable to open the database file”

The database can be open()ed using the same encryption key and it works fine. Tried with multiple encrypted databases - all can be opened, but not attached. This works when encrypted and when not ...
1
vote
3answers
308 views

How to use named parameters inside LIKE operator pattern in Adobe Air

I wanted to use a named parameter placeholder inside the LIKE operator pattern so that the argument string is properly escaped. Here's my modified code where I am using the at-param placeholder: ...
0
votes
1answer
603 views

Flex/AIR SQLite: Multiple Inserts, Unknown Number of Rows in 1 SQL Statement

I am creating a Mobile APP in Flex/Adobe AIR. I am using SQLite to store and retrieve data. I have a situation where I need to INSERT an unknown number of rows into a table. Is there a way to do this ...
1
vote
0answers
269 views

Adobe Air SQLite performance vs SQLite cli

I have simple SQL table structure where there is three tables: entry (~70k rows), tag (~27k rows) and entry_tag (~2.5M rows). entry_tag -table contains relations between entries and tags (n-n ...
-1
votes
2answers
194 views

Calender with events from sqlite for adobe air application [closed]

I am creating an adobe air application for a shop,I want to display a calender with events which has been picked from sqlite database(like a To Do list).I have searched lot but got nothing.Please ...
0
votes
0answers
151 views

Adobe Air: why does this DataProvider create error?

I am currently getting an error at line 148 during runtime: TypeError: Error #1009: Cannot access a property or method of a null object reference. at PlantDB/ResultFill()[C:\Users\usern\Adobe ...
0
votes
1answer
283 views

Adobe Air: need help transferring data from sqlite to components

I have successfully received data from sqlite. I see that the data appear in trace function, however I am having a problem with displaying these data correctly. I think it has something to do with ...
0
votes
1answer
663 views

Adobe Air: why SQLStatement's getResult().data is null?

Using Flash Builder 4.6, I am following http://www.flex-blog.com/adobe-air-sqlite-example/ as an example, and there is one part of codes that does not work: private function resault(e:SQLEvent):void ...
2
votes
2answers
725 views

Adobe Air: convert sqlite's result [object Object] to String?

I am currently trying to do retrieve text from sqlite. I see that the amount of data requested do come correctly, but content, on the other hand, seems to be in an incorrect format. I've tried some ...
0
votes
2answers
122 views

Can I use multiple SQLite databases with my Adobe Air application?

I am developing an Air application. Can I use multiple SQLite databases with my Adobe Air application?
0
votes
1answer
264 views

Inserting well over 100,000 records into SQLite

I have a database that needs to be updated periodically. My employer wants to keep a base instance of it in MS Access, and update one in a local SQLite table. I've been able to grab all of the data ...
0
votes
1answer
72 views

What is a decent xml cms for actionscript?

My client wants a xml driven flash actionscript cms with menus, text and videos from a Typo3 CMS. Can I suggest him to use an alternative webserver when he wants to browse the site offline or is there ...
2
votes
1answer
161 views

AIR create local SQLite db from downloaded schema file

I'm developing an AIR app which will synchronise data between local SQLite db and server-side MySQL database. The app is to be used by several users on any number of desktop computers. When a user ...
1
vote
1answer
446 views

Backup local sqlite database in Adobe Air mobile projects to Cloud

I am having an application with local sqlite database in an Adobe Air application for Android and iOS. I would like to give the user the ability to backup and restore the local database. Since on ...
1
vote
1answer
612 views

SQLite 3 CSV Import to Table

I am using this as a resource to get me started - http://www.pantz.org/software/sqlite/sqlite_commands_and_general_usage.html Currently I am working on creating an AIR program making use of the built ...
0
votes
2answers
151 views

How to make function wait to return after getResult from SQL Statement is available?

I'm just trying to make a simple function that will return all the data from my SQLITE database as an array. But it looks like when my function is returning the array, the SQL statement is actually ...
1
vote
2answers
672 views

how to prevent Air for android SQLite database from being overwritten?

Im creating an sqlite db in my air for android app inside the following function: protected function createDatabase():void{ _sqlConnection = new SQLConnection(); ...
0
votes
0answers
99 views

Make sure SQLite db is open before querying

I am currently working on a desktop app with AdobeAir, JS, and a SQlite DB. I have an issue where sometimes the DB is opening too slowly and the first query is then not successful. I am using an ...
0
votes
2answers
232 views

Can not write to sqlite db in packaged air

I can write to db when running in IDE(FB), while after packaging a air, the app wont write to sqlite db, Why? Thanks in advance.
0
votes
2answers
671 views

How to embed a SQLite DB (*.db file) to the AIR application?

I want to emded SQLite database (*.db file) to the AIR app, like images, mp3 etc. This is to ensure that it was impossible to copy my database for other users.
0
votes
0answers
140 views

Air/Flex: Using sqlite 2 instead of sqlite 3?

Apparently Adobe Air/Flex only has API for sqlite 3, not sqlite 2. I was wondering if it's possible to open and use sqlite 2 database instead. Thanks in advance.
2
votes
0answers
380 views

I can't write to a SQLLite database in my AIR app

I am publishing an AIR app in debug mode using FlashDevelop and have included a database in the files/folders to be published. When the app first launches it checks whether there is an instance of ...
0
votes
1answer
272 views

Flex SQLite Local database encryption - SimpleEncryptionKeyGenerator.as

I'm trying to use the Simple Encryption Key Generator Class found here - http://www.dehats.com/drupal/?q=node/62 Everything seems to working properly except the hash encryption key that is returned ...
3
votes
0answers
157 views

Adobe AIR - SQLite - Multiple Clients

I have a commercial Point Of Sale product that's written on Adobe AIR and runs in about 100 retail locations right now. Most of my customers have about 5 computers in the store. Some of my larger ...

1 2 3