Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
129 views
in Technique[技术] by (71.8m points)

android - What is the advantage of Using SQLite rather than File?

In Android, entering data in SQLite uses more time and more lines of codes than in .txt file.

Saving data in .txt and use FileReader is convenient to get the data.

What is the advantage of Using SQLite rather than File ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Advantages of SQLite Databases over File Storage

  • If you have related pieces of data, regular files don't let you indicate their relationship; SQLite databases do.
  • SQLite lets you store data in structured manner.
  • SQLite has higher performance.
  • SQLite databases can also be queried and the data retrieval is much more robust.
  • The android.database and android.database.sqlite packages offer a higher-performance alternative where source compatibility is not an issue.
  • Android-databases created in Android are visible only to the application that created them
  • There is no file parsing and generating code to write and debug.
  • Content can be accessed and updated using powerful SQL queries, greatly reducing the complexity of the application code.
  • Extending the file format for new capabilities in later releases is a simple as adding new tables or new columns to existing tables.
  • Diverse content which might otherwise be stored as a "pile-of-files" can be encapsulated into a single disk file.
  • The content can be viewed using third-party tools.
  • The application file is portable across all operating systems, 32-bit and 64-bit and big- and little-endian architectures.
  • The application only has to load as much data as it needs, rather than reading the entire application file and holding a complete parse in memory. Startup time and memory consumption are reduced.
  • Small edits only overwrite the parts of the file that change, not the entire file, thus improving performance and reducing wear on SSD drives.
  • Content is updated continuously and atomically so that there is no work lost in the event of a power failure or crash.
  • Applications can leverage the full-text search and RTREE capabilities that are built into SQLite.
  • Performance problems can often be resolved using CREATE INDEX rather than redesigning, rewriting, and retesting application code.
  • A federation of programs, perhaps written in different programming languages, can all access the same application file with no compatibility concerns.
  • Multiple processes can attach to the same application file and can read and write without interfering with each another.
  • Cross-session undo/redo can be implemented using triggers.
  • In many common cases, loading content from an SQLite database is faster than loading content out of individual files. See Internal Versus External BLOBs for additional information.
  • Content stored in an SQLite database is more likely to be recoverable decades in the future, long after all traces of the original application have been lost. Data lives longer than code.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...