0 votes
in Sql by
Which of the following statements is true about SQLite backup and restore?

a) SQLite provides built-in commands for backing up and restoring a database.

b) The backup and restore commands can be executed using the sqlite3 command-line tool.

c) The backup command creates a copy of a database in a separate file.

d) All of the above.

1 Answer

0 votes
by

Answer: d) All of the above.

Explanation: SQLite provides built-in commands for backing up and restoring a database, which can be executed using the sqlite3 command-line tool. The backup command creates a copy of a database in a separate file.

...