vote up 1 vote down star

Which databases does Adobe Flash support, if any?

flag

6 Answers

vote up 3 vote down check

None, really.

As others have said, the best solution is to have something in between. I personally prefer amfphp for larger datasets and plain xml for smaller stuff, especially since they introduced E4X (way better XML handling) in ActionScript 3.

However, since Flash can do socket communication, it is possible to talk directly to a server. This is very fast, but you're basically opening up your database to the world. I've never used any of these, but the major ones seem to be asql and assql.

Also, flash running in Adobe AIR has support for sqlite databases.

link|flag
vote up 4 vote down

None.

Instead, you would need to create some middleware (say, a webservice) that you talked to that did the database CRUD for you.

link|flag
vote up 2 vote down

Agree with @SCdF, create a service in php or any other language that takes a modified query from flash, executes it and returns the DB response. Make sure that it only takes a connection from its own local IP address or something like that to prevent "unintentional use".

link|flag
vote up 0 vote down

@SCdF is correct. From the horse's mouth:

A Macromedia Flash movie cannot communicate directly with a database. However, Macromedia Flash movies can "talk" to server-side applications (also referred to as "middleware"). Middleware can query a database and relay data back and forth. There are many server applications available. Some of the most common are CGI, ASP, PHP, ColdFusion and Tango.

link|flag
vote up 1 vote down

You should look at this article. Also you could look into Flex Data Services. Usually Flex is more suited for application that need a lot of access to data, but for simple things in flash you should use some Xml data sources, and write the xml source yourself in something like php, asp, python, perl etc.. like others have pointed out.

link|flag
vote up 0 vote down

What about Blaze DS (which used to be Flex Data Services) and LiveCycle Data Services?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.