从 adobe flex 应用程序更新 Mysql
嘿, 我对 Flex 很陌生。我想构建一个包含许多单选按钮的应用程序。我想知道如何通过单选按钮的状态更新 mysql。
提前致谢。
Hey there,
I am very new to Flex. I want to build an application that will contain many radio buttons. I want to know how to update mysql by the status of radio buttons.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不要使用这些 MySQL 连接器之一。
不使用它们的原因有很多,但最主要的是安全问题。
任何人都可以反编译您的应用程序并查看其中的内容。这意味着可以访问所有数据库请求!
Flex用于演示,您将业务逻辑和数据存储在服务器上。您需要在服务器上运行一些东西来访问您的数据库并将其数据公开为服务。有很多可能性,具体取决于您所知道的服务器语言
Don't use one of these MySQL connectors.
There are plenty of reasons not to use them, but the main one is about security issues.
Anyone can decompile your application and see what's inside it. That means having access to all database requests!
Flex is for presentation, you keep business logic and data storage on the server. You would need to have something running on the server that access your database and expose its data as services. There are many possibilities depending which server language you know
使用 BlazeDS/Java 更新数据库这篇文章包含一些有用的链接
Flex 4 BlazeDS 与 Hibernate 和 MySQL 数据库
希望有帮助
Use BlazeDS/Java to update Database this post contains some usefull links
Flex 4 BlazeDS with Hibernate and MySQL database
Hopes that helps
购买 Flex Connector for MySQL,当您阅读如何使用它时,您就会立即开始使用它。
Purchase Flex Connector for MySQL and you will be off and running when you read how to use it.