For BE/B.Tech/BCA/MCA/ME/M.Tech Major/Minor Project for CS/IT branch at minimum price Text Message @ 9424820157

SQLite Interview Questions

SQLite Interview Questions



1) Explain what is SQLite?

SQLite is a mostly ACID-compliant relational database management system contained in a relatively small C programming library.


2) List out the standard SQLite commands?

The standard SQLite commands interact with relational databases are similar to SQL.  They are:

SELECT

CREATE

INSERT

UPDATE

DROP

DELETE

Based on their operational nature these commands can be classified.


3) Explain what is SQLite transactions?

The transaction is referred to as a unit of work that is performed against a database.  It is the propagation of one or more changes to the database. Properties of transactions are determined by ACID.

-Atomicity: It ensures that all work unit is successfully completed

-Consistency: It ensures that the database changes states upon a successfully committed transaction

-Isolation: It enables transactions to operate independently of and transparent to each other

-Durability: It ensures that the result or effect of a committed transaction persists in case of a system failure


4) List out the areas where SQLite works well?

SQLite works well with:

-Embedded devices and the internet of things

-Application file format

-Data Analysis

-Websites

-Cache for enterprise data

-Server-side database

-File archives

-Internal or temporary databases

-Replacement for ad hoc disk files

-Experimental SQL language extensions

-Stand-in for an enterprise database during demos or testing


5) What is the difference between SQL and SQLite?

SQL:

-SQL is a Structured Query Language

-SQL support stored procedures

-SQL is server based

SQLite:

-SQLite is a powerful, embedded  relational database management system mostly used in mobile devices for data storage

-SQLite does not support stored procedures

-SQLite is file-based


6) List out the advantages of SQLite?

-It does not require separate server processor system to operate

-No setup or administration required SQlite comes with zero-configuration

-An SQLite database can be stored in a single cross-platform disk file

-SQLite is very compact less than 400 KiB

-SQLite is self-contained, which means no external dependencies

-It supports almost all types of O.S

-It is written in ANSI-C and provides easy to use API


7) Mention what are the SQLite storage classes? 

SQLite storage classes include:

-Null: The value is a NULL value

-Integer: The value is a signed integer (1,2,3, etc.)

-Real: The value is a floating point value, stored as an 8 byte IEEE floating point number

-Text: The value is a text string, stored using the database encoding ( UTF-8, UTF-16BE)

-BLOB (Binary Large Object): The value is a blob of data, exactly stored as it was input


8) Explain how Boolean values in SQLite are stored?

Boolean values in SQLite are stored as integers 0 (false) and 1 (true).  SQLite does not have a separate Boolean storage class.


9) What is the use of SQLITE group by clause?

The SQLITE group by clause is used in collaboration with the SELECT statement to arrange identical data into groups.


10) Mention what is the command used to create a database in SQLite?

To create a database in SQLite- command “sqlite3” is used.  The basic syntax to create a database is $sqlite3 DatabaseName.db.


11) Mention what is .dump command is used for?

The .dump command is used to make an SQLite database dump, remember once you use the dump command all your data will be dumped forever and cannot be retrieved.


12) Explain how can you delete or add columns from an existing table in SQLite?

There is very limited support for alter ( add or delete ) table.  In case if you want to delete or add columns from an existing table in SQLite you have to first save the existing data to a temporary table, drop the old table or column, create the new table and then copy the data back in from the temporary table.


13) Mention what is the maximum size of a VARCHAR in SQLite?

SQLite does not have any specific length for VARCHAR.  For instance, you can declare a VARCHAR (10) and SQLite will store a 500 million character string there.  It will keep all 500 characters intact.


14) Explain how to recover deleted data from my SQLite database?

To recover the information you can use your backup copy of your database file, but if you do not have a backup copy, then recovery is impossible.  SQLite uses SQLITE SECURE DELETE option which overwrites all deleted content with zeroes.


15) When can you get an SQLITE_SCHEMA error?

The SQLITE_SCHEMA error is returned when a prepared SQL statement is not valid and cannot be executed.  Such type occurs only when using the sqlite3 prepare() and sqlite3 step() interfaces to run SQL.


16) Mention what is the Export Control Classification Number (EECN) for SQLite?

The core public domain SQLite source code is not described by any ECCN. Hence, the ECCN should be reported as EAR99. But if you are adding new code or linking SQLite with the application, then it might change the EECN number.


17) Explain what is view in SQLite?

In SQLite, a view is actually a composition of a table in the form of pre-defined SQLite Query.  A view can consist of all rows of a table or selected rows from one or more tables.


18) Explain what are SQLite Indexes?

SQLite indexes are special lookup tables that the database search engine use to speed up data retrieval.  In simple words, it is a pointer to data in a table.


19) When Indexes should be avoided?

Indexes should be avoided when:

-Tables are small

-Tables that changes frequently

-Columns that are frequently manipulated or having a high number of NULL values


20) How would you create an AUTOINCREMENT field?

For autoincrement, you have to declare a column of the table to be INTEGER PRIMARY KEY, then whenever you insert a NULL into that column of the table, the NULL is automatically converted into an integer which is one greater than the largest value of that column over all other rows in the table, or 1 if the table is empty.


21) What is the use of WHERE clause in CRUD statements?

WHERE clause is used to refer to a specific row where the CRUD operation is executed. Without using WHERE clause all the rows will be affected.

No comments:

Post a Comment



Please go through below tutorials:


Mule 4 Tutorials

DEPLOY TO CLOUDHUB C4E CLIENT ID ENFORCEMENT CUSTOM POLICY RABBIT MQ INTEGRATION
XML TO JSON WEBSERVICE CONSUMER VM CONNECTOR VALIDATION UNTIL SUCCESSFUL
SUB FLOW SET & REMOVE VARIABLE TRANSACTION ID SCATTER GATHER ROUND ROBIN
CONSUME REST WEBSERVICE CRUD OPERATIONS PARSE TEMPLATE OBJECT TO JSON LOAD STATIC RESOURCE
JSON TO XML INVOKE IDEMPOTENT FILTER FOR EACH FLAT TO JSON
FIXWIDTH TO JSON FIRST SUCCESSFUL FILE OPERATIONS EXECUTE ERROR HANDLING
EMAIL FUNCTIONALITY DYNAMIC EVALUATE CUSTOM BUSINESS EVENT CSV TO JSON COPYBOOK TO JSON
CHOICE ASYNC

Widely used Connectors in Mule 3

CMIS JETTY VM CONNECTOR SALESFORCE POP3
JMS TCP/IP WEBSERVICE CONSUMER QUARTZ MONGO DB
FILE CONNECTOR DATABASE CONNECTOR


Widely used Scopes in Mule 3

SUB FLOW REQUEST REPLY PROCESSOR CHAIN FOR EACH CACHE
ASYNC TCP/IP COMPOSITE SOURCE POLL UNTIL SUCCESSFUL
TRANSACTIONAL FLOW

Widely used Components in Mule 3

EXPRESSION CXF SCRIPT RUBY PYTHON
JAVASCRIPT JAVA INVOKE CUSTOM BUSINESS EVENT GROOVY
ECHO LOGGER


Widely used Transformers in Mule 3

MONGO DB XSLT TRANSFORMER REFERENCE SCRIPT RUBY
PYTHON MESSAGE PROPERTIES JAVA TRANSFORMER GZIP COMPRESS/UNCOMPRESS GROOVY
EXPRESSION DOM TO XML STRING VALIDATION COMBINE COLLECTIONS BYTE ARRAY TO STRING
ATTACHMENT TRANSFORMER FILE TO STRING XML TO DOM APPEND STRING JAVASCRIPT
JSON TO JAVA COPYBOOK TO JSON MAP TO JSON JSON TO XML FLATFILE TO JSON
FIXWIDTH TO JSON CSV TO JSON


Widely used Filters in Mule 3

WILDCARD SCHEMA VALIDATION REGEX PAYLOAD OR
NOT MESSAGE PROPERTY MESSAGE IDEMPOTENT FILTER REFERNCE
EXPRESSION EXCEPTION CUSTOM AND


Exception Strategy in Mule 3

REFERENCE EXCEPTION STRATEGY CUSTOM EXCEPTION STRATEGY CHOICE EXCEPTION STRATEGY CATCH EXCEPTION STRATEGY GLOBAL EXCEPTION STRATEGY


Flow Control in Mule 3

CHOICE COLLECTION AGGREGATOR COLLECTION SPLITTER CUSTOM AGGREGATOR FIRST SUCCESSFUL
MESSAGE CHUNK AGGREGATOR MESSAGE CHUNK SPLITTER RESEQUENCER ROUND ROBIN SOAP ROUTER