[flexcoders] Re: AIR 1.5.3 application build problem on Linux

2009-12-15 Thread jason_williams_mm
Can you please log a bug for this issue using www.adobe.com/wish. Please include the information here and include the specifics of the OS, window manager, version, etc. Thanks jw --- In flexcoders@yahoogroups.com, aejaz_98 aejaz...@... wrote: Looks like it is not possible to build a

[flexcoders] Re: Problems with Julian Dates with AIR percision?

2009-07-04 Thread jason_williams_mm
Hi Charlie, Can you post an example of the code that you are using? It would help to see an example table definition along with the AS code you are using. Thanks, jw --- In flexcoders@yahoogroups.com, Charlie Hubbard charlie.hubb...@... wrote: I'm writing some unit tests for my database, and

[flexcoders] Re: AIR app crashes and burns on Mac

2009-05-12 Thread jason_williams_mm
Can you please log a bug with your test case attached at: http://www.adobe.com/go/wish Thanks, jw --- In flexcoders@yahoogroups.com, jer_ela g...@... wrote: adl, the development runtime for AIR is crashing on me. This seems to be related to using SQL lite. It had been crashing at one

[flexcoders] Re: AIR SQLite:Does anyone have this issue with DB connected asynchronously?

2009-03-31 Thread jason_williams_mm
Have you logged a bug? Intermittent issues are very hard to track down. What platform are you using (windows, OS X, Linux)? What version of the runtime? Thanks, jw --- In flexcoders@yahoogroups.com, handitan handi...@... wrote: Hi all, I posted this question quite a while ago but I just

[flexcoders] Re: Custom functions in SQLite using AIR

2009-02-20 Thread jason_williams_mm
There is no way to do this currently, but, a *great* feature request. Please visit www.adobe.com/go/wish and make the request. jw --- In flexcoders@yahoogroups.com, fan...@... fan...@... wrote: Hello, Is there a way to define custom aggregation functions in SQLite using AIR? From

[flexcoders] Re: Database connection from AIR application

2008-12-22 Thread jason_williams_mm
Kotha, Can you elaborate on your use case a little? If you are not interested in accessing server side logic, why are you wanting to get data from outside of the runtime (there is an embedded SQL database in the runtime)? jw --- In flexcoders@yahoogroups.com, kotha poornima poorni_ag...@...

[flexcoders] Re: AIR SQLLite, ints, and NULLs

2008-11-23 Thread jason_williams_mm
--- In flexcoders@yahoogroups.com, Charlie Hubbard [EMAIL PROTECTED] wrote: I've read over all of the docs on Air, but there seems to be a missing discussion around NULL values in SQLLite and how those map back to datatypes. What I've found is that if I have an int field type I can't get a

[flexcoders] Re: sqlite insert issue

2008-11-03 Thread jason_williams_mm
--- In flexcoders@yahoogroups.com, Johannes Nel [EMAIL PROTECTED] The confusion here is due to the affinities that you have selected. When the AIR embedded db cannot find the affinity specified it defaults to NUMERIC. There is no affinity called timestamp (or bigint for that matter) and you are

[flexcoders] Re: AIR Persistance mechanisims?

2008-05-14 Thread jason_williams_mm
You can skip the step of sending this to a ByteArray and Base64Encoding it, by using the additional affinities added for AIR applications. For example, using the following create statement: CREATE TABLE vo (objID String UNIQUE NOT NULL, objValue Object); You can then store the objects directly

[flexcoders] Re: AIR - Async vs Sync SQLite connections

2008-04-21 Thread jason_williams_mm
The overhead in opening a connection only occurs when the database is not empty. We force some initialization to occur during an open operation to report errors right away rather than waiting until the first statement is executed. The initialization time is proportional to the number of tables and

[flexcoders] Re: How to asynchronously dispatch an event

2007-03-23 Thread jason_williams_mm
You can do this with a timer. There is also an undocumented unsupported class in the rpc package that does this as well, but, *use it at your own risk* import mx.rpc.AsyncDispatcher; new AsyncDispatcher(myEventDispatchMethod, [myEvent], 10); It basically takes a method closure and a list of

[flexcoders] Re: DB access in Apollo

2007-03-07 Thread jason_williams_mm
I was looking for something more along the lines of: MySQL supports this particular SQL dialect, or has this feature which make development so much easier, etc...

[flexcoders] Re: DB access in Apollo

2007-03-06 Thread jason_williams_mm
--- In flexcoders@yahoogroups.com, Impudent1 [EMAIL PROTECTED] wrote: Russell Sprague wrote: I vote for MySQL. Agreed Impudent1 LeapFrog Productions Are there specific reasons why you want or need MySQL?

[flexcoders] Re: Bug! Filters are Demolishing my ArrayCollection Data Bindings!

2006-11-16 Thread jason_williams_mm
Hi, In your post you wrote: They are not really meant to create a new collection that you can then add items to. Actually, while you are correct on the one hand that they [collection views] are not meant to create a new collection, one of the design centers for views was meant to allow

[flexcoders] Re: Loop with call to Flex Data Services

2006-11-01 Thread jason_williams_mm
Each fill operation is asynchronous and so are the calls to Alert.show (). This means that code doesn't stop when these lines of code are executed it continues to run the very next line. With the fill operation you will not get a valid length until the server responds to the request, however,

[flexcoders] Re: Loop with call to Flex Data Services

2006-11-01 Thread jason_williams_mm
} } } Hope that helps. --- In flexcoders@yahoogroups.com, jonathan_merey [EMAIL PROTECTED] wrote: Actually, I want to concat the tmpArray of each loop ant return it then. --- In flexcoders@yahoogroups.com, jason_williams_mm jwilliams@ wrote: Each fill operation is asynchronous

[flexcoders] Re: Flex - Database

2006-09-18 Thread jason_williams_mm
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: Thought-making, certainly :-) Suppose I was using FDS, so I've got lots of client-side logic for what can and can't be changed. I then have to duplicate that all server-side as well, because I don't trust the client.

[flexcoders] Re: Flex - Database

2006-09-18 Thread jason_williams_mm
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: Thought-making, certainly :-) Suppose I was using FDS, so I've got lots of client-side logic for what can and can't be changed. I then have to duplicate that all server-side as well, because I don't trust the client.

[flexcoders] Re: Flex Data Services configuration problem

2006-09-18 Thread jason_williams_mm
--- In flexcoders@yahoogroups.com, amalabie [EMAIL PROTECTED] wrote: I'm trying to configure Flex Data Services with Hibernate on the back end and I'm running into these problems as shown below. Any pointers to solve these would be highly appreciated. You need to specify/configure the

[flexcoders] Re: Flex - Database

2006-09-15 Thread jason_williams_mm
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: Oh, collery: Using FDS data-sync is a bad idea from this point of view, as it allows the app very fine grained access (i.e. at the level of tables) as opposed to a high level business process (create a user with these