Boa tarde.
A nivel de estudo, estou tentando conectar o mysql ao flex...
tabela: contato
id | nome | email
Já esta populado
CREATE TABLE `xxx`.`contato` (
`id` int(10) unsigned NOT NULL auto_increment,
`nome` varchar(60) NOT NULL,
`email` varchar(45) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
no flex ADOBE FLEX BUILDER 3
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Button x="149" y="168" label="<<"/>
<mx:Button x="201" y="168" label=">>"/>
<mx:TextInput x="149" y="78" width="65" id="txtID"/>
<mx:TextInput x="149" y="108" width="305" id="txtNome"/>
<mx:TextInput x="149" y="138" id="txtEmail"/>
<mx:Label x="95" y="80" text="ID"/>
<mx:Label x="95" y="110" text="Nome"/>
<mx:Label x="95" y="140" text="Email"/>
</mx:Application>
Queria por favor uma dica ou exemplo de como fazer a conexao para retorna as informações na tela.