Hi.
I am also new to FLEX and i want to do something similar to what you did but
i don't know how. If it is possible, can you please send me the sources?
Have a good day!



vkc_nair wrote:
> 
> Hi,
> 
> 
> 
> I'm new to Flex.
> 
> Created a flex application to retrive data from Oracle Database.
> 
> 1. Created a Java class for the Object (Table) with get and set 
> functions.
> 
> 2. Created another Javaclass to get the data from Database using 
> JDBC.
> 
> 3. Used a JSP to get the data in XML format.
> 
> 4. I'm able to display the data in Flex application.
> 
> 
> 5. How do I update the data changes in Flex application
> back to the Database Table?
> 
> 
> Could you please provide a sample or point me in right direction?
> 
> 
> Thanks
> Vimal
> 
> 
> 
> 
> 
> The JSP file.
> 
> 
> <[EMAIL PROTECTED] import="flex.testdrive.gate.GateRuleService, 
>                               flex.testdrive.gate.GateRule, 
>                               java.util.List"%>
> <?xml version="1.0" encoding="utf-8"?>
> <gaterule>
> <%
>       GateRuleService srv = new GateRuleService();
>       List list = null;
>       list = srv.getGateRule();
>       GateRule gaterule;
>       for (int i=0; i<list.size(); i++)
>       {
>               gaterule = (GateRule) list.get(i);
> %>    
>     <gaterule rule_id="<%= gaterule.getRuleId()%>">
>         <procedure_name><%= gaterule.getProcName() %
>></procedure_name>
>         <created><%= gaterule.getCreated() %></created>
>         <creator><%= gaterule.getCreator() %></creator>
>         <changed><%= gaterule.getChanged() %></changed>
>         <changer><%= gaterule.getChanger() %></changer>
>         <description><%= gaterule.getDescription() %></description>
>     </gaterule>
> <%
>       }
> %>
> </gaterule>
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/How-to-update-Database-Data-using-HTTPService-tp13233004p15607280.html
Sent from the FlexCoders mailing list archive at Nabble.com.

Reply via email to