Which databases does Adobe Flash support, if any?
|
|
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. |
||
|
|
|
|
None. Instead, you would need to create some middleware (say, a webservice) that you talked to that did the database CRUD for you. |
||
|
|
|
|
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". |
||
|
|
|
|
@SCdF is correct. From the horse's mouth:
|
|||
|
|
|
|
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. |
||
|
|
|
|
What about Blaze DS (which used to be Flex Data Services) and LiveCycle Data Services? |
||
|
|
