简体   繁体   中英

Connecting to commercial databases from an Adobe AIR application

I'm new to Flex and Adobe AIR, but I'm writing a desktop application that will need to connect and query commercial databases such as DB2, SQL Server and Oracle. How do I connect to these type of databases from ActionScript in an AIR application?

You really can't do it nicely, AIR is meant to use web servers as data sources not DBs, and there are no DB drivers in actionscript ready. That being said there are a few things that you can try:

  1. The usual way - you do not connect to a DB but ask a web server to do it for you, and return data
  2. Try this library - assql . It probably won't work very good, and it stopped being developed a year ago.
  3. With AIR 2.0 you can call native applications, so you could prepare an application that would do the queries for you and communicate with it. It will be rather complicated and if you're a beginner this probably makes no sense - and AIR 2.0 is still in beta. But you can even put a full blown Tomcat server inside an AIR 2.0 app, and after you do that you can use it like you would use a remote server. If you're interested read this post .

All in all, if you want to use DB-s as data sources AIR should probably not be your choice for a project.

请参阅以下SO问题的答案:AIR(JS)的数据库抽象层?

AFAIK even air does not connect to a DB directly. You can however use ZendAMF (AMFPHP), SabreAMF, coldFusion, or any of several other ways to connect to DBs.

I personally use an HTTPService to call a php page that ouputs a query in XML.

There are so many ways to do this it would be hard to say what is right for you. Look up remoteObject and HTTPService example and find what's going to suit you best.

I only know that it can connect directly to SQLite with Flex AIR. I know that the safari browser will have it's own datastore soon, so perhaps you can develop something in that vein.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM