Skip to content

Datasource with SQLite

Introduction SQLite

This document contains information about the SQLite database how to install and connect with AIV.This document has step-by-step information on how to install, connect SQLite Database with AIV and will show one use case example.

SQLite is a widely-used lightweight, embedded relational database management system (RDBMS). SQLite is a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine. SQLite is largely SQL standards-compliant, and it is fully ACID compliant.

Objective

To connect SQLite Database with AIV.

Prerequisites

  1. SQLite Jar

  2. SQlite Database

Skill Level Required

Basic knowledge of Database.

1. Download SQLite JDBC driver:

To get the JDBC driver, Go the vendor’s end and download the SQLite-connector-java.jar Driver file from here as shown in figure below:

Image

After downloading the jar file, add it into the AIV.

Restart the Tomcat server after adding a jar in the lib folder.

2. Download SQLite from here.

It will redirect on new page select Precompiled Binaries for Windows and click on SQLite-tools-winn32-x86-3370200.zip file to download.

Go to the folder where you have downloaded this file and extract the zip file.

When you go inside the folder you will be able to see three executable files.

Image

Copy the SQLite folder and paste it into your desired location, here I am adding in C drive.

We need to set the environment variable for SQLite, for that we have to copy the path of SQLite (C:\sqlite3)

Click on Windows icon and search edit the system Environment variable >> environment variable

Select Path – System Variable >> Edit button

Image

**Click on New Button **>> Paste the path of SQLite Folder, as shown in figure below:

Image

Click on OK.

Open Command Prompt Run as Administrator and write command as shown in figure below, you will see sqlite version.

sqlite3 

Image

.quit

Image

To create a database because SQLite database is created locally in the File System so for that you just need to cd to the directory in which you want to create your SQLite Database.

I am creating an SQLite database on my Desktop so for that I am creating a new folder and giving the name DB.

cd C:\Users\Reema\Desktop\DB

Image

To create a database write command below ex. Sqlite3 Datbasename.db hit enter.

sqlite3 Datbasename.db

Image

To view the database which you have created write command below:

.databases 

Image

For creating a Table inside mydb write a command below:

 create table Students (id INT primary key); 

Image

To know more about SQLite Database operation click here.

Connecting SQLite Datasource with AIV

Go to the Master data section and click on Data Source, as shown in the figure below:

Image

Click on Create button from the bottom horizontal menu bar from Datasource section, as shown in the figure below:

Image

The Create Datasource window will open, as shown in the figure below:

Image

Search for SQLite data source from Top-right search bar in Datasource section, as shown in the figure below:

Image

Click on SQLite to create a data source using SQLite.

Image

As you click on SQLite the create dialog box will pop-up on screen, as shown in the figure below:

Image

Wait Time: Wait Time Analysis for Database Optimization. Wait time analysis helps you understand how much time each SQL statement is spending across all its executions in a given period of time.

Is JNDI: Java Naming and Directory Interface is the name of the interface in the Java programming language. It is an API( Application Program Interface) that works with servers and can fetch files from a database using naming conventions.

Class: Database class Contains methods for creating and manipulating data.

Connection URL: A database connection URL is a string that your DBMS JDBC driver uses to connect to a database.It can contain information such as where to search for the database, the name of the database to connect to, and configuration properties.

Username: Username is the name of the user that is connected to the database.

Password: You can set a password on an Access database to prevent unauthorized access to the database file.

Extra Configuration: Using Extra Configuration you can add extra fields as per ypur requirements.

Insert the following data in the Datasource connection Dialog box:

Click on Test Connection Button to Check Database Connection, as shown in figure below:

Image

After Connection Successful, Click on ok and save button to close the Dialog box.

Image

To create a dataset Select the SQLite DataSource and click on Create Dataset, as shown in the figure below:

Image

When you click on create Dataset the following screen will be display.

Image

Enter the Following details in Dataset.

Name: SQLite (Add name as per your requirements)

Source: SQLite (select the data source which you have created)

DataSource: JDBC

Image

write a query to fetch data from required table.

Image

Click on Preview.

Image

Click on Save and Exit.