Databases versus plain text

后端 未结 14 1689
我在风中等你
我在风中等你 2020-12-04 22:01

When dealing with small projects, what do you feel is the break even point for storing data in simple text files, hash tables, etc., versus using a real database? For small

14条回答
  •  盖世英雄少女心
    2020-12-04 22:33

    I think at some point you'll miss the querying capabilities of a database, but you can consider some minimalistic database alternatives:

    • SQLite (Great, almost SQL-92 standard compliant)
    • shsql
    • SQL Server Compact

提交回复
热议问题