Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

HTML Web SQL Insert

Posted in HTML Tutorial
Updated on Sep 03, 2024
By Mari Selvan
πŸ‘οΈ 12 - Views
⏳ 4 mins
πŸ’¬ 0
HTML Web SQL Insert

Photo Credit to CodeToFun

πŸ™‹ Introduction

Web SQL Database is a web standard that provides a way to store and manage structured data in web applications using a SQL database. While Web SQL is now deprecated in favor of IndexedDB, it remains relevant for understanding data storage concepts in web development.

This page focuses specifically on inserting data into a Web SQL database.

❓ What Is Web SQL?

Web SQL Database is a deprecated web standard that allows client-side storage of structured data. It uses SQL queries to interact with the database, making it familiar to developers with SQL experience. Although no longer recommended for new projects, understanding Web SQL helps grasp fundamental data storage concepts.

βš™οΈ Setting Up the Database

To use Web SQL, you first need to create a database and define the schema. This involves opening a database and executing SQL commands to create tables.

javascript
Copied
Copy To Clipboard
const db = openDatabase('myDatabase', '1.0', 'Test DB', 2 * 1024 * 1024);

db.transaction(function (tx) {
  tx.executeSql('CREATE TABLE IF NOT EXISTS items (id unique, name)');
});

πŸ—„οΈ Inserting Data into the Database

Inserting data into a Web SQL database involves using the executeSql method within a transaction. You specify an SQL INSERT statement to add data to the table.

javascript
Copied
Copy To Clipboard
function insertData(id, name) {
  db.transaction(function (tx) {
    tx.executeSql('INSERT INTO items (id, name) VALUES (?, ?)', [id, name], function (tx, result) {
      console.log('Data inserted successfully');
    }, function (tx, error) {
      console.error('Insert error:', error.message);
    });
  });
}

🀝 Handling Success and Errors

When performing database operations, it's important to handle success and error callbacks to manage the results and troubleshoot issues.

  • Success Callback: Executed when the SQL query is successful. You can use this to confirm that data was inserted correctly.
  • Error Callback: Triggered if an error occurs during the execution of the SQL statement. Handling errors helps identify and resolve issues.
javascript
Copied
Copy To Clipboard
db.transaction(function (tx) {
  tx.executeSql('INSERT INTO items (id, name) VALUES (?, ?)', [1, 'Sample Item'], function (tx, result) {
    console.log('Data inserted successfully');
  }, function (tx, error) {
    console.error('Insert error:', error.message);
  });
});

πŸ† Best Practices

  • Validation: Always validate input data before inserting it into the database to avoid SQL injection attacks and ensure data integrity.
  • Error Handling: Implement comprehensive error handling to catch and address any issues that arise during database operations.
  • Transactions: Use transactions to ensure that database operations are atomic, consistent, isolated, and durable (ACID).

πŸ“ Example

Here’s a complete example demonstrating how to set up a Web SQL database and insert data into it:

HTML
Copied
Copy To Clipboard
<!DOCTYPE html>
<html>
<head>
  <title>Web SQL Insert Example</title>
</head>
<body>
  <h1>Insert Data into Web SQL</h1>
  <button id="insert">Insert Data</button>

  <script>
    const db = openDatabase('myDatabase', '1.0', 'Test DB', 2 * 1024 * 1024);

    db.transaction(function (tx) {
      tx.executeSql('CREATE TABLE IF NOT EXISTS items (id unique, name)');
    });

    document.getElementById('insert').addEventListener('click', () => {
      insertData(1, 'Sample Item');
    });

    function insertData(id, name) {
      db.transaction(function (tx) {
        tx.executeSql('INSERT INTO items (id, name) VALUES (?, ?)', [id, name], function (tx, result) {
          console.log('Data inserted successfully');
        }, function (tx, error) {
          console.error('Insert error:', error.message);
        });
      });
    }
  </script>
</body>
</html>

πŸŽ‰ Conclusion

Inserting data into a Web SQL database involves creating a database, defining tables, and executing SQL INSERT statements within transactions. While Web SQL is deprecated, understanding how it works can provide valuable insights into client-side data storage and management.

πŸ‘¨β€πŸ’» Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
πŸ‘‹ Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy