1.

Mention When To Use Sqlite And When Not To Use Sqlite?

Answer»

SQLite can be used in following conditions

  • Embedded applications: Does not require expansion like mobile applications or GAMES
  • Disk assess REPLACEMENT: APPLICATION that require to write or read files to disk directly
  • Testing: When testing business application logic

When not to use SQLite

  • Multi-user applications: Where multiple client needs to access and use same DATABASE
  • Applications requiring high write VOLUMES: It enables you to use only one single write operation to take place at any given time

SQLite can be used in following conditions

When not to use SQLite



Discussion

No Comment Found