LocalStorage usage

Minimal browser storage

SQL Converter uses the browser's localStorage API only for essential user interface preferences.

No SQL queries, database structures, or user-generated content are stored locally by the application.

Stored preferences

  • Selected UI theme (light/dark mode).

  • Selected application language.

What is not stored

The application intentionally avoids storing sensitive or unnecessary information inside the browser.

Not stored in localStorage

  • SQL queries.

  • Database credentials.

  • User accounts or sessions.

  • Tracking identifiers.

  • Personal information.

Example structure

The stored values are limited to simple UI configuration values similar to the following:

{
  "theme": "dark",
  "language": "en"
}

Privacy-focused design

Because SQL Converter operates entirely client-side, localStorage is used only to improve user experience between visits.

No application data is synchronized with external servers through localStorage.