SQLite Browser - Online SQL Interpreter - ExtendsClass
Có thể bạn quan tâm
- About
- Blog
- My Account
- Database file
- Queries
- Save & Share
- Export
- Run
SELECT |
UPDATE |
DELETE |
INSERT |
CREATE TABLE |
This SQLite browser allows you to create, open, query, update, export SQL to CSV, save and share a SQLite database.This SQLite viewer online runs directly in your browser.
It is Open source :), you can download the source code here (the repository is not up to date, as soon as I have time, I will update it!).Feel free to improve this tool :)It is still quite new, I hope to improve it over time.
User guide
This db browser for SQLite allows you to run SQLite online. You can show, insert, update and delete tables content without knowing SQL.
Load a SQLite database:
Drag and drop your SQLite file directly into the SQLite editor or click on "Database file > Open DB file" to open your SQLite database.
Show and manipulate a table:
You can select a table in order to display and manipulate its content (1).Click on refresh button (2) in order to update tables list.
Clicks on "Browse" to display table content.All the rows of the table are displayed. You have the possibility to sort the results according to any of the columns of the table (up and down triangles).
You can delete a row by clicking on the associated cross.
You can also directly update a column value by double clicking it. An input will be appear, the row will be updated when the input lose the focus.
You can export table content into CSV file by clicking on "Export CSV file". You can choice separator.
You can also add new row into table by clicking on "Insert a row". A insert form will be appear.
Click on "structure" tab to display the SQL of the current table.
Import a CSV file into SQLite table:
Click on "Import CSV file" to import your CSV / TSV file into a SQLite table.
Show a view:
To show the contents of a view: this is analogous to displaying the contents of a table.
Execute queries:
Enter your SQL query in the editor, finally click on "Run" to execute it. The query result will be displayed below the editor .
You can also run only one query entered in the editor. To do this, simply select it before clicking on "Run".
If you want to export the results in csv format, click on "Export".
Export your SQLite database:
Click on "Database file > Save DB file" to export your database into a SQLi file.
You can save your SQLite database and queries in order to share it. Your SQLite database will be saved on our server.You can protect your share with a password, so only you can change it.See "Save and Share" menu to share and save your SQLite database.
The sql queries entered in the editor are saved so that you will find them during your next visits. Warning, this is a local backup in your browser, it can be deleted at any time.
Create a SQLite database:
This tool allows you to easily create a SQLite database, there is nothing to do! You can directly execute SQL queries in the editor to manipulate your database.
Autocomplete:
Ctrl-space for autocomplete.
SQLite Online
This SQLite viewer allows you to open SQLite file online in order to create, query, and edit SQLite database files.It is useful for developers wanting to query a database file,it can help test and debug data from a sqlite database.This SQLite playground can also be useful for non-developers. For example to edit browser bookmarks.
This SQL viewer online allows you to make SQL online test, you can SQL practice online.Thanks to sharing mode, you can be several to test an online SQL database.
This small tool is useful and allows not to have to install a fat client for occasional use. For everyday use, a fat client may seem more appropriate.
You do not have to know the SQL commands to use this tool.
Online SQL editor
This tool does not require installation, it is totally online, you can make SQL online.Just have a simple browser to use it!It can help to make tests quickly or when it is not possible to install software on its server.
About SQLite
SQLite is not directly comparable to client/server SQL database engines (PostgreSQL, MySQL, ...).SQLite provides local data storage for applicationswhile client/server SQL database engines implements a shared repository of data.
SQLite is an embedded SQL database engine. Data are contained in a single disk file, SQLite reads and writes directly to disk files.SQLite is cross-platform!
SQLite has a full-featured SQL implementation (Tables, indexes, triggers, SELECT, UPDATE, DELELE, VACUUM ...).
SQLite is public domain, it is free to everyone to use for any purpose,it is the most used database engine in the world!
There are several appropriate uses for SQLite:
- Low-traffic websites
- Embedded devices
- Internal or temporary databases
- Cache
- ...
To see more visit https://www.sqlite.org/
About SQLite compiled to javascript (sql.js)
sql.js is a port of SQLite to JavaScript by compiling the SQLite C code with Emscripten, it is MIT licensed. It can be used like any javascript library. And it can be used both in a browser and in Node.js!Thanks to this, this tool is only executed on the browser side.
sql.js allows you to easily import and export SQLite databases.
Example SELECT account.id, SUM(invoice.amount) FROM account JOIN invoice ON account.id = invoice.accountId WHERE account.id > 10 GROUP BY account.id HAVING SUM(invoice.amount) > 100.00 ORDER BY account.id ASC, account.type DESC LIMIT 1000 OFFSET 100; 0A few words on Emscripten: It is a source-to-source compiler, this allows applications and libraries designed to run as standard executables to be integrated into client side web applications. Emscripten has been used to port (in addition to SQLite) Unreal Engine 3, Qt application framework, ...
A full documentation is available.
× Save SQLite databaseYour SQLite database has been permanently saved and you (or anybody) can access with this link: × PasswordChoice a password to modify/delete this SQLite database later Enter password to modify this SQLite database.Enter password to delete this SQLite database.Enter the new password for the fork. Action × Informations ×- Browse
- Structure
- Insert a row
- Import CSV file
- Export CSV file
Enter the code (case insensitive) *
If you can not read the code, click here to generate a new codeAnonymous-2018-09-11 15:49thaaank You Best web Site :)ReplyAnswerCaptcha
Enter the code (case insensitive) *
If you can not read the code, click here to generate a new codeCyril (admin)-2018-09-13 16:23Thank you for the encouragement ;)ReplyAnswerCaptcha
Enter the code (case insensitive) *
If you can not read the code, click here to generate a new codeCarlo Bertelli-2019-11-30 18:02Hello, a very nice solution. Thanks. I have two problems: 1. We use Spatialite to spatially enable SQLite databases and geometric functions are not recognised and give an error; 2. This view and others, well recognized by recent SQLite versions, gives and error. An example: CREATE VIEW rnet_v_aggregazioni_t_scale ( oss_cod_civico, n_aggregazioni, civ_x, civ_y ) AS SELECT oss_cod_civico, sum(aggregazione), civ_x, civ_y FROM ( SELECT c.oss_cod_civico, CASE WHEN (a.riferimento IS NULL) THEN 0 ELSE 1 END aggregazione, c.civ_x, c.civ_y FROM rnet_aggregazioni a LEFT JOIN y_civici_edifici c ON a.riferimento = c.oss_cod_civico WHERE a.classe_rif = 'SAC01' ) alias_113336431 GROUP BY oss_cod_civico, civ_x, civ_y ; ReplyAnswerCaptcha
Enter the code (case insensitive) *
If you can not read the code, click here to generate a new codeCyril (admin)-2019-11-30 19:27Hello, Thanks :) Spatialite is an extension of SQLite, this tool does not have this extension, sorry. This tool does not allow to indicate columns in "create view" statement. You must remove "(oss_cod_civico,n_aggregazioni,civ_x,civ_y)" for this to work. Regards,ReplyAnswerCaptcha
Enter the code (case insensitive) *
If you can not read the code, click here to generate a new codepriyanka-2020-12-07 07:54My database is showing malfunction error. can you help me for the sameReplyAnswerCaptcha
Enter the code (case insensitive) *
If you can not read the code, click here to generate a new codeCyril (Admin)-2020-12-10 21:49Hi, with Sqlite 3.29 a new .recover command has been introduced (CLI)ReplyAnswerCaptcha
Enter the code (case insensitive) *
If you can not read the code, click here to generate a new codewilliam Bell-2021-11-07 23:19Is it possible to embed the jscript in a page by fetching it from a (local) Windows folder without using machinery like require that involves a server?Would be very useful to me if one can. Lovely piece of work.ReplyAnswerCaptcha
Enter the code (case insensitive) *
If you can not read the code, click here to generate a new codeConditions of UseThese tools might interest you:convert:PHP to PythonPython to javascriptKotlin to javaTypeScript to JavaScriptXPath to CSS selectorjson to python object onlineJSON to PHPXML to JSON ConverterPlaygrounds:MongoDB onlineSQL to MongoDB ConverterSQL onlineOracle onlineSQL Server onlineJavaScript validatorJSONPath TesterXPath TesterRegex TesterMySQL onlinePostgreSQL onlineAPI tools:Fake APIJSON storageMock RESTWeb service testingOnline REST clientOnline SOAP clientRandom Data Generator:Data generatorXML generatorCSV generatorJSON generatorCode checkers:Python Code CheckerRuby Code CheckerPHP Code CheckerCode testers:Lua testerSQL syntax checkerPython testerOnline Golang CompilerOnline Java CompilerPHP testerDiff:XML diffJSON diffJSON PatchCSV diffText diffPDF diffConverters:SQL to SQLParquet to CSV ConverterParquet viewerAvro viewerJSON to Excel ConverterCSV to Excelbase 64 encryptorYAML to JSONImage to base64Formatters:PHP FormatterCSV editorXML FormatterJSON FormatterReact FormatterPython FormatterJavaScript formatterSQL formatterHTML FormatterValidators:Query builderJSON Schema Validator And GeneratorXML ValidatorXSD ValidatorMinifiers:JavaScript minifyCSS formatterGenerators:Robots.txt GeneratorFree Sitemap GeneratorEncoders:HTML encodeJWT decoderURL encodeOther:CSV splitterMerge CSVTAR to ZIP OnlinePDF ViewerGUID GeneratorNotepad OnlineUUID GeneratorExcel viewerZip filesUnzip filesDeveloper resourcesheight and width compressor
Disclaimer: The tools are provided "as is", without warranty of any kind, either express or implied.Any links to third-party website or software available on this website are provided "as is",without warranty of any kind, either express or implied and are to be used at your own risk.
Từ khóa » đọc File Sql Online
-
Xem SQL Online | Ứng Dụng GroupDocs Phí
-
SQL Online Compiler - For Data Science
-
SQLite Viewer
-
SQL Viewer - Open SQL Online & Free - FileProInfo
-
Chạy SQL Online - Công Cụ Học Câu Lệnh SQL
-
I Have A .SQL File I Want To Read. Is There An Online Service That Will Do ...
-
Online SQL Editor - JDoodle
-
SQL Là File Gì? Phần Mềm & Cách Mở File . SQL, Sửa File Lỗi
-
Chuyển đổi SQLITE Sang SQL Trực Tuyến Miễn Phí - AnyConv
-
SQL Viewer Online For Windows,Mac,Linux OS - Appscms
-
SQLite Home Page
-
68 Dòng Code Python Hay Sử Dụng Xử Lý Dữ Liệu Trong Pandas