What is WebSQL?( ASP.Net HTML 5 interview questions)

WebSQL is a structured relational database at the client browser side. It’s a local RDBMS inside the browser on which you can fire SQL queries.

Is WebSQL a part of HTML 5 specification?

No, many people label it as HTML 5 but it’s not part of HTML 5 specification. The specification is based around SQLite.

So how can we use WebSQL ?

The first step we need to do is open the database by using “OpenDatabase” function as shown below. The first argument is the name of the database, the next is the version, then a simple textual title and finally the size of the database.

var db=openDatabase(‘dbCustomer’,’1.0′,’Customer app’, 2 * 1024 * 1024);

To execute SQL we then need to use “transaction” function and call “executeSql” function to fire SQL.

db.transaction(function (tx)
{
tx.executeSql(‘CREATE TABLE IF NOT EXISTS tblCust(id unique, customername)’);
tx.executeSql(‘INSERT INTO tblcust (id, customername) VALUES(1, “shiv”)’);
tx.executeSql(‘INSERT INTO tblcust (id, customername) VALUES (2, “raju”)’);
}

In case you are firing “select” query you will get data is “results” collection which we can loop and display in the HTML UI.

db.transaction(function (tx)
{
tx.executeSql(‘SELECT * FROM tblcust’, [], function (tx, results) {
for (i = 0; i < len; i++)
{
msg = “<p><b>” + results.rows.item(i).log + “</b></p>”;
document.querySelector(‘#customer).innerHTML +=  msg;
}
}, null);
});

Recently one of our readers was asked the below ASP.NET HTML 5 interview questions on server side events.

http://www.dotnetinterviewquestions.in/article_why-do-we-need-html-5-server-sent-events-aspnet-html-interview-questions_182.html

In case you are preparing for .NET and c# interview’s do see the below video which discusses what kind of questions are asked in the interviews.

About C#.NET, ASP.NET MVC Core, Angular, Azure, (MSBI)Business Intelligence, Data Science - Python Interview Questions

This blog is for developers who want to crack .NET and C# interviews. It has all tips and tricks needed to crack .NET interviews , C# interview , SQL Server interview , Java interview , WCF Interview , Silverlight interview , WPF interview , LINQ interview , Entity framework Interview. Do not forget to watch our Learn step by step video series. ASP.NET MVC Interview Questions and Answers:- https://youtu.be/pXmMdmJUC0g C# Interview Questions and Answers:- https://youtu.be/BKynEBPqiIM Angular Interview Questions and Answers:- https://youtu.be/-jeoyDJDsSM C# tutorial for beginners(4 hrs.):- https://youtu.be/AxEGRBFwlmI Learn Azure Step by Step:- https://youtu.be/wdUK7bCMXqs Azure AZ-900 fundamentals certification :- https://youtu.be/hC9iGgJorz8 AZ- 204 certification Azure:- https://youtu.be/qI8PRn2C080 Learn Angular tutorial step by step https://tinyurl.com/ycd9j895 Learn MVC 5 step by step in 16 hours:- https://youtu.be/Lp7nSImO5vk Learn Design Pattern Step by Step https://goo.gl/eJdn0m Learn MSBI Step by Step in 32 hours:- https://goo.gl/TTpFZN Learn SQL Server Step by Step http://tinyurl.com/ja4zmwu Python Tutorial for Beginners:- https://youtu.be/KjJ7WzEL-es Learn Data Science in 1 hour :- https://tinyurl.com/y5o7qbau Learn Power BI Step by Step:- https://tinyurl.com/y6thhkxw Learn Tableau step by step :- https://tinyurl.com/kh6ojyo
This entry was posted in Uncategorized and tagged , , , , . Bookmark the permalink.

Leave a comment