Database design for database-agnostic applications

后端 未结 17 1953
隐瞒了意图╮
隐瞒了意图╮ 2021-02-02 14:15

What do I have to consider in database design for a new application which should be able to support the most common relational database systems (SQL Server, MyS

17条回答
  •  萌比男神i
    2021-02-02 14:54

    1. Don't use stored procedures
    2. Don't use vendor specific SQL

    Or, use a persistence technology such as hibernate / nHibernate that abstracts away the differences between different DBs.

提交回复
热议问题