ActionScript 2.0 :: Connect .swf File To A Database?
Dec 8, 2006I want to know how to connect an .swf file to send and receive data from a database (I,m using MC Access & Flash8 )
View 4 RepliesI want to know how to connect an .swf file to send and receive data from a database (I,m using MC Access & Flash8 )
View 4 RepliesCan I build flash application that connects to database? (MySQL) For example: Photo Gallery that brings me the photos from database...
View 3 RepliesI want to create a login page in Flash, containing two text fields (username password) and an Enter button. The database I am using is MYSQL where is a table with username and password elements. For the connection I must use ASP.NET and not PHP.
View 1 RepliesHow to connect the sql database to retrieve and send the data from flash application? Is there any possbile of two tier concept in flash?
View 1 RepliesI want to connect to MS SQL Database using Action Script 3.
View 1 RepliesIm new to data input using flash,how to connect to a mysql database.
View 5 RepliesIam working on a quessinarie (assesment) for elearning software. i want to connect sql database with flash and save my records in back end like add, delete, modification of student result and details.
connect the sql database. or dot net server. I know how to connect PHP and mysql. But my client dont want php. only sql database and do the add, del, modificaiton.
Need to connect to database file (.mdb) via flash ( as2 or as3 ) directly, applicable ?
View 6 Repliesi have prepared a chat application using FMS. i need to save the chat history in the data base. i am not sure how to connect database and FMS.
View 2 RepliesI am beginner to Flex3 .. I am developing simple application with login screen having fields user name and password. I wanted to know how i store this information in MySql database?
View 1 RepliesCan actionScript2.0 connect directly to any database? I know we can use ASP,or JSP as a middleware to connect to database. But without using middleware can we connect directly to database?
View 1 Repliesi am trying to connect php to a mysql database by doing the following: $con = mysql_connect("localhost:8080","username","passwor d"); when i try to run the php file in the browser it takes forever to load. What could be the problem? and what am i doing wrong. i created the database with mysql in xampp.
View 2 RepliesCan actionScript2.0 connect directly to any database? I know we can use ASP,or JSP as a middleware to connect to database. But without using middleware can we connect directly to database?
View 1 RepliesI have a map as a button in flash and a database in access, how can I show the data in asscess in flash , now i know there is no a direct link from access to flash and I have to use PHP, ASP, etc.... But really I am not a programmer and I don't want to be .. so any easier way to do this?
View 7 RepliesI need to find a way to develop a program which can run local and server side. I don't know silverlight/flash or something else can do it.Is there any framework/language/platform which can work over internet when internet connection exists and can work when internet went off?
View 1 RepliesCan i connect to a microsoft database with flash and/or actionscript? And for example, if the db name is kirupa.mdb, what do i type to connect to the database with flash and/or actionscript?
View 2 RepliesI have a requirement: I have to create a form in flash connecting to database. for example:
Name:
Age:
Address:
Comments:
[ SUBMIT ]
So after completing the form once the user clicks on "submit" button this information should automatically get stored in Database.
How do I connect Flex3 to a MS Access 2007 local database? Could you provide some example code for a login page using username and password and validating it?
View 2 RepliesI am trying to connect to database from the Adobe FLex AIR application.
Is it possible to connect to database(SQL Server / ORACLE) from Action script.
But this website is simply superb. I want to how to connect flash to local sql database without the server side scripting.
View 3 RepliesDoes anyone know how to connect the Macromedia's datagrid component to a PHP/MySQL database? I can't seem to find ANY info or tutorials on the web for this.
View 2 Repliesis possible to connect to a mySQL database directly through the socket class?
View 1 RepliesI want to get data from a database of my site. In the setting of the project point out Root URL: http://...:** But what to set in Root folder?
Already tried the two dozen variants and Validate location does not work.
i have a sprite,this sprite function is to connect to mysql database and print data to the sprite..and now if i have a new data in my database.. and i want the sprite can automatically add a new sprite to print the new data.so if i add a new data.. in flash a new sprite can occur and print the new data.. and so on.
View 1 RepliesWhat is the easiest method to connect a flex application to a MySQL database?
View 7 RepliesI am currently working on software for student attendance. I use the flex / flash and php to create the software but I faced a problem barcode scanner, can not connect to the application to call the data from the database when students scan the barcode printed on their student card.
View 1 RepliesI am currently working on software for student attendance. I use the flex / flash and php to create the software but I faced a problem barcode scanner (Motorola-type barcode scanner Symbol LS2208 Laser Barcode Scanner USB), can not connect to the application to call the data from the database when students scan the barcode printed on their student card. make the script so that it can run on flex / flash and php. it makes me crazy for a week to seek a way out. (I have not mastered the java script)
[Code]...
I am having issues getting Flash to connect to a SQL 2000 Database. I keep getting an error with flash.data.*.The code is :
import flash.data.*
I receive the following error:
1172: Definition flash.data could not be found.
I wrote a mobile application ( AIR ) which storing some strings into a SqlLite database.It is external database file, which shall reside in a sub folder of the main application folder.So far everything works flawless while debugging on the PC, but when i am exporting the application into .APK file the result package does not contain the database, neither the database folder.
View 1 RepliesUPDATE: Now I've moved the AMFConnection var declaration to outside the functions in Main, and commented out some trace() commands, and now it gives new errors:
Error #2044: Unhandled NetStatusEvent:. level=error, code=NetConnection.Call.BadVersion
at AMFConnection/init()[/Users/Jan/Downloads/amfphp1/AMFConnection.as:32]
at AMFConnection()[/Users/Jan/Downloads/amfphp1/AMFConnection.as:23]
[code]...
I'm trying to connect to AMFPHP on a server (with Flash AS3), and the swf borks when it reaches the .connect() stage. To make things easier (?) and more reusable (?), I've put all the NetConnection mechanics into a separate class, AMFConnection, which I call from the Main document class like this (details changed):
public function testConnection(e:*=null):void {
var conn:AMFConnection = new AMFConnection();
conn.table = "some_table";
[code]...
AMFConnection actually starts the connection and calls the AMFPHP service with the function gogogo(), and here's where the connect() NetConnection function just won't work. Here's the main section of the AMFConncection class
private var _netConnection:NetConnection;
private var _responder:Responder;
function AMFConnection()
[code]...
It also fails to display the stage, instead showing the loading dots. Now, eventually I'm going to move this application to the same server as the AMFPHP service, but even when I try it there with a relative url, instead of an absolute one, it still breaks down at connect(). I've tried changing the publish settings from local only to network only, to no avail.