如何在没有SqlDataSource的情况下将mysql连接到DevExpress ASPxScheduler
我正在研究一个 ASP.net 项目,他们想使用 MySQL。 我习惯了 SQL Server,但使用 mySQL 应该不是问题。
通常,该控件需要绑定一个 SqlDataSource,但这对于 MySQL 来说不可用(来自本网站的其他帖子)。
连接 MySQL 和 DevExpress ASPxScheduler 以便创建约会的最佳方式是什么?
I have an ASP.net project I'm looking at and they want to use MySQL. I'm used to SQL server but using mySQL shouldn't be a problem.
Normally the control would like a SqlDataSource to bind to but that's not available with MySQL (from other posts on this site).
What's the best way to connect MySQL and the DevExpress ASPxScheduler so that you can create appointments?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不使用ObjectDataSource来写数据层呢? 或者使用 LLBLGen,我认为它与 MySQL 配合得很好。 我看到的一个警告是 MySQL ODBC 和 ADO 驱动程序存在元数据问题。
Why not an ObjectDataSource and write the data layer? Or use LLBLGen, I think it works just fine with MySQL. The one caveat I've seen is that the MySQL ODBC and ADO drivers have issues with metadata.
我最终使用了 objectdatasource 和 ObjectCreated 方法,并编写了数据层以将记录插入 mysql 数据库。 我已经包含了我的代码,以防有人需要一些逻辑方面的帮助。
I did end up using the objectdatasource and the ObjectCreated method and wrote the datalayer to insert records into the mysql database. I've included my code just incase someone needs some help with some of the logic.