将 SQL Server 上的 Asp.net WebApp 迁移到 MySQL 有哪些潜在问题?

发布于 2024-12-06 05:00:06 字数 93 浏览 0 评论 0原文

WebApp 利用 Asp.net 成员资格和会话角色。它还使用 LLBLGen Pro 作为数据层。

我的问题是,有哪些潜在问题可能会导致此功能不起作用?

The WebApp makes use of Asp.net membership, And roles with session. it also uses LLBLGen Pro as a datalayer.

My Question is what are the potential issues that might make this not work ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

踏雪无痕 2024-12-13 05:00:06

想到的一些潜在问题:

  • 安全性、用户、组/角色
  • 事务语义和边界
  • 移植现有的存储过程、函数、CLR 代码等
  • 数据类型兼容性/语义
  • 性能和可扩展性(每个数据库都有自己的领域)优点和缺点)
  • 错误报告和恢复
  • 处理动态 SQL
  • 缺乏从 ASP.NET 到使用 MySql 的数据库的单步调试
  • 数据库架构更改管理
  • 支持全文搜索
  • SQL 查询和命令的差异
  • 工具支持:SQL 探查器、Visual Studio T- SQL编辑器等
  • 驱动程序支持
  • 多个活动结果集(如果需要)
  • 异步命令支持

我确信还有更多...

A few of the potential issues that come to mind:

  • Security, users, groups/roles
  • Transactional semantics and boundaries
  • Porting existing stored procedures, functions, CLR code, etc.
  • Data type compatibility / semantics
  • Performance and scalability (each DB has its own areas of strengths and weaknesses)
  • Error reporting and recovery
  • Handling dynamic SQL
  • Lack of step-in debugging from ASP.NET to the DB with MySql
  • Database schema change management
  • Support for fulltext search
  • Differences in SQL queries and commands
  • Tool support: SQL profiler, Visual Studio T-SQL editor, etc.
  • Driver support
  • Multiple active result sets (if needed)
  • Async command support

I'm sure there's more...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文