並び順

ブックマーク数

期間指定

  • から
  • まで

241 - 279 件 / 279件

新着順 人気順

SQLiteの検索結果241 - 279 件 / 279件

  • Bashing JSON into Shape with SQLite - Xe Iaso

    Published on 01/04/2022, 1640 words, 6 minutes to read It is clear that most of the world has decided that they want to use JSON for their public-facing API endpoints. However, most of the time you will need to deal with storage engines that don't deal with JSON very well. This can be confusing to deal with because you need to fit a square peg into a round hole. However, SQLite added JSON function

    • SQLite3でUpsertを実行する

      似たような処理にreplaceがあるが、 replaceはレコード(行)を丸ごと入れ替える(delete/insert)のに対し、 upsertはカラムを指定してレコードを更新する。 SQLite3 でレコードがあれば置換、なければ新規挿入する (replace) 公式 によると PostgreSQL の構文を利用しているとのこと。 Microsoft SQLServer や Oracle の「merge(マージ)」構文に近い使い方だが mergeは重複の判定にUniqueカラム以外のものを指定できたりする。 実行例 「upsert」というコマンドがあるわけではなく、 on conflict文を使い キーが重複した場合の処理を指定することができる。 on conflict文は sqlite のバージョン3.24.0 から利用可能。 環境 Windows 10 sqlite3 (3.24.0

      • WordPressをSQLiteで動かす方法|さくらサーバーライトでWordPressを動かす | 【2024年】おすすめアフィリエイトASP選び方!ブログ初心者おすすめ

        SQLiteについて SQLiteとは、単体ファイルとして使用できるデータベースです。 データベースは通常、サーバーに接続して扱うものですが、ローカルに扱うことができる形式のデータベースです。 なので、必要なファイルとして、 WordPressSQLiteのデータベースこのふたつが必要となります。 WordPressについて公式から日本語版をダウンロードします。 https://ja.WordPress.org/download/ 現在は、WordPress 5.7.2です。 ダウンロードをして、自分のサイトにファイルをアップロードします。 ↓ SQLiteのデータベースSQLiteのデータベースは「wp-sqlite-db」を使用します。 参考:https://github.com/aaemnnosttv/wp-sqlite-db This project is based on the

          WordPressをSQLiteで動かす方法|さくらサーバーライトでWordPressを動かす | 【2024年】おすすめアフィリエイトASP選び方!ブログ初心者おすすめ
        • SQLite3で同時書き込みしたい

          書き込みが発生する暗黙的トランザクションも同様のロックが発生します。 ロック中の読み取りは、EXCLUSIVEロック中だけ他プロセスもリードアクセスができなくなります。これ以外のUNLOCKED 、SHARED 、RESERVED中はリードアクセス可能です。 PENDINGはSHAREDロック所有プロセスはリードアクセス可能です。新たなSHAREDロックは獲得できません。 同時読み込みをサポートする仕組みであることがわかります。ただEXCLUSIVEロック中は読み込みも失敗することに注意が必要です。 プログラム(PHP SQLIte3)に落とし込んで考えると以下のようなことがわかりました。 ・querySingle("select")、query("select")、prepare("select")等でSHAREDロックが発生する ・exec("insert")等でSHARED、RESE

            SQLite3で同時書き込みしたい
          • GitHub - nalgeon/sqlime: Online SQLite playground

            You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

              GitHub - nalgeon/sqlime: Online SQLite playground
            • SQLite 3.39がリリース - 待望のRIGHT/FULL OUTER JOINがサポート | ソフトアンテナ

              SQLite開発チームは6月25日(現地時間)、SQLiteデータベースの最新版v3.39.0をリリースしました。SQLiteはLinux、Mac、Windows等の各種プラットフォームで利用できる軽量データベースで、バイナリやソースコードを公式サイトよりダウンロードすることができます。 SQLite 3.39は、2022年になってから2番目のメジャーバージョンアップ版で、長い間待ち望まれていたRIGHT/FULL OUTER JOINのサポートが追加されています。結合演算子が 「RIGHT JOIN」または「RIGHT OUTER JOIN」の場合、ONまたはUSINGフィルタリング句が適用されると、右側の入力データセットにある行が左側のデータセットにない場合も、1行出力されます。この場合、通常なら左側の入力データセットからコピーされた値を含むはずの列に NUL値が含まれます。 また、P

                SQLite 3.39がリリース - 待望のRIGHT/FULL OUTER JOINがサポート | ソフトアンテナ
              • Write-Ahead Logging

                1. Overview The default method by which SQLite implements atomic commit and rollback is a rollback journal. Beginning with version 3.7.0 (2010-07-21), a new "Write-Ahead Log" option (hereafter referred to as "WAL") is available. There are advantages and disadvantages to using WAL instead of a rollback journal. Advantages include: WAL is significantly faster in most scenarios. WAL provides more con

                • Render.comへrails appをdeploy - Qiita

                  Render.とは? 簡単に言うとRender.comはherokuのようなweb hosting serviceです。 Herokuの無料プラン提供終了に伴い、学習用に無料で使用できるサービスを探していく中で良さそうだなと思ったので試してみました。 とは言え後で分かったなのですが、DBは作成後90日間無料で使用できますがそれ以降は2週間以内に有料プランに移行しないと削除されてしまうという事なので注意が必要です。 投稿の目的 率直に言うと自分の理解を深めるのが一番の狙いですが、Render.comへのdeploy方法の記事は存在しているもののまだまだ情報が少ないと感じたので参考になる方がいるかもしれないと思い投稿してみました。私が以前deployした時に詰まったところも共有できたらと考えています。 以下の動画でStripeをRailsに実装する方法を学習していく中でherokuへdeplo

                    Render.comへrails appをdeploy - Qiita
                  • How I found a bug in SQLite | Vallified

                    rqlite is a lightweight, open-source, distributed relational database written in Go, which uses SQLite as its storage engine. Recently I introduced a high-performance write-path into rqlite and, to my great surprise, it exposed a bug in SQLite. The SQLite team quickly addressed the issue but let’s take a look at the behavior I saw, and how I finally created a simple test which reproduced the issue

                      How I found a bug in SQLite | Vallified
                    • GRDB.swiftというSQLiteライブラリがイイ感じだった - Qiita

                      みなさんアプリのデータベースには何を使っていますか? 周りをみてみると、「SQLite?今はやっぱRealmやろ!」って感じで最近はRealmが積極的に採用されていますね。 僕もRealmを利用していて、SQLite+FMDBを使っていた頃に比べると生SQL書かんで済むわサーバー建てればデバイス間の同期が楽にできるわで爆速で開発が進むようになり、控えめに言って尊いです。 このRealmの躍進によりSQLiteの影が薄くなりつつありますが、最近 「Swiftyに書けて」「比較的早くて」「イイ感じ」にSQLiteを操作できるライブラリ「GRDB.swift」を使ってみて、まだまだSQLiteでもいけそうだなーと感じたところがあったのでまとめてみました。 でもやっぱ結局中身はSQLiteなので根本的なところはどうにかなってないんですけどね GRDB.swiftを採用する3つの理由 シンプルで機能

                        GRDB.swiftというSQLiteライブラリがイイ感じだった - Qiita
                      • Using LiteFS with Bun on Fly.io

                        A picture of delicious food by me, 30 minutes ago (at the time of writing)UpdateThere is a repository to fork and try that simplifies this whole post, specially after latest development with Fly and Bun. As neither Bun nor LiteFS are recommended for production yet, I’ve decided it was obviously a good idea to deploy “their synergy” on fly.io 😇 “… but why?” … well, this is why! What’s Bun very goo

                          Using LiteFS with Bun on Fly.io
                        • SQLite As An Application File Format

                          SQLite As An Application File Format Executive Summary An SQLite database file with a defined schema often makes an excellent application file format. Here are a dozen reasons why this is so: Simplified Application Development Single-File Documents High-Level Query Language Accessible Content Cross-Platform Atomic Transactions Incremental And Continuous Updates Easily Extensible Performance Concur

                          • Django2.2で開発サーバー起動時にSQLite3のエラーが出た場合の対応 - Qiita

                            # Python3のインストール sudo yum install python3 cd python3 -m venv ~/myvenv/ # 仮想環境に切り替え source ~/myvenv/bin/activate # Djangoインストール pip install Django # Djangoのチュートリアルをやろうとしてプロジェクト作成 $ django-admin startproject mysite # 開発用サーバー起動 $ python manage.py runserver # 大量に出るので一部だけ # SQLite3は3.8.3、または、3.8.3以降のバージョンにしてくださいエラー packages/django/db/backends/sqlite3/base.py", line 63, in check_sqlite_version raise Imp

                              Django2.2で開発サーバー起動時にSQLite3のエラーが出た場合の対応 - Qiita
                            • GitHub - facebookincubator/CG-SQL: CG/SQL is a compiler that converts a SQL Stored Procedure like language into C for SQLite. SQLite has no stored procedures of its own. CG/CQL can also generate other useful artifacts for testing and schema maintenance.

                              CG/SQL is a code generation system for the popular SQLite library that allows developers to write stored procedures in a variant of Transact-SQL (T-SQL) and compile them into C code that uses SQLite’s C API to do the coded operations. CG/SQL enables engineers to create highly complex stored procedures with very large queries, without the manual code checking that existing methods require. The full

                                GitHub - facebookincubator/CG-SQL: CG/SQL is a compiler that converts a SQL Stored Procedure like language into C for SQLite. SQLite has no stored procedures of its own. CG/CQL can also generate other useful artifacts for testing and schema maintenance.
                              • SQLiteのカレンダー | Advent Calendar 2022 - Qiita

                                様々な場所で利用されているデータベースライブラリSQLite 近年はPostgreSQLをリファレンスとして、様々なクエリをサポートしています。 そのSQLiteについてのあれやこれやをAdvent Calendar形式でお伝えします! edit_calendarHow to join the calendarYou can join the calendar by selecting an available date and registering the URL of the article you wish to link to. If a slot is available, you can go back to a past date to join!

                                  SQLiteのカレンダー | Advent Calendar 2022 - Qiita
                                • GitHub - proofrock/ws4sqlite: Query sqlite via json+http

                                  I recently started a discussion over the future direction for this project. Take a look, and chip in if you want! ws4sqlite is a server application that, applied to one or more sqlite files, allows to perform SQL queries and statements on them via REST (or better, JSON over HTTP). Possible use cases are the ones where remote access to a sqlite db is useful/needed, for example a data layer for a re

                                    GitHub - proofrock/ws4sqlite: Query sqlite via json+http
                                  • [Rust] RusqliteでSqliteを操作する | DevelopersIO

                                    Introduction Rustでsqliteを操作するためのcrateはたくさんありますが、 今回はRusqliteというcrateを使って Sqliteにアクセスしてみました。 RustからPostgreSQLにアクセスするcrate、rust-postgresをベースに作成されており、 似たようなインターフェイスで使うことが可能になっています。 Environment MacBook Pro (13-inch, M1, 2020) OS : MacOS 11.3.1 rust : 1.61.0 Try Sqliteのセットアップ まずはsqlite3をHomebrewでインストールします。 % brew install sqlite3 インストールできたらexample_db.db3と名前指定して起動。 % sqlite3 example_db.db3 sqlite> テーブル作成

                                      [Rust] RusqliteでSqliteを操作する | DevelopersIO
                                    • [PHP]データベースなしでLaravelを使う|今すぐ使えるサンプルコード

                                      データベースサーバーを立ち上げずに単独でLaravelを使いたいという時のサンプルです。 ※厳密にはデータベースにサーバー不要SQLiteを設定します laravel new nodb cd nodb.env ファイルのデフォルトMySQL部分をSQLiteに変更します DB_CONNECTION=sqlite DB_DATABASE=database/database.sqlite上記設定した database/database.sqlite に空ファイルを用意します touch database/database.sqlite以下を実行して「Migration table not found.」と表示されることを確認します php artisan migrate:status上記で設定は完了です。 ↓↓↓ サンプルコードはこちら ↓↓↓

                                        [PHP]データベースなしでLaravelを使う|今すぐ使えるサンプルコード
                                      • Cross-database queries in SQLite (and weeknotes)

                                        21st February 2021 I released Datasette 0.55 and sqlite-utils 3.6 this week with a common theme across both releases: supporting cross-database joins. Cross-database queries in Datasette SQLite databases are single files on disk. I really love this characteristic—it makes them easy to create, copy and move around. All you need is a disk volume and you can create as many SQLite databases as you lik

                                          Cross-database queries in SQLite (and weeknotes)
                                        • SQLite 3.40 Released With WASM Support For Web Browsers, Recovery Extension - Phoronix

                                          Show Your Support: This site is primarily supported by advertisements. Ads are what have allowed this site to be maintained on a daily basis for the past 19+ years. We do our best to ensure only clean, relevant ads are shown, when any nasty ads are detected, we work to remove them ASAP. If you would like to view the site without ads while still supporting our work, please consider our ad-free Phor

                                            SQLite 3.40 Released With WASM Support For Web Browsers, Recovery Extension - Phoronix
                                          • SQLiteでのデータ永続化 | Flutter Doc JP

                                            データ保存今回はFlutterでのデータ保存の方法を解説していきます。 利用するのはSQLiteです。 AndroidやiOSでアプリ開発をしたことがある方は馴染みがあると思いますが、アプリ開発をしていない人にとってはあまり聞きなれないかもしれません。 SQLiteはアプリ向けのデータベースです。 データベースについてやSQLite、SQLについてはここでは説明しませんので、ご自身で学習をおこなってください。 データベース SQLite SQL SQLiteファイルの保存場所実装をする前にまず知っておいて欲しいのはファイルの保存場所についてです。 AndroidやiOSはそれぞれディレクトリ構成や名称に違いがあり、アプリケーションから操作できるディレクトリ名、それぞれの役割についても違います。 このまま利用しようとすると、OSを判定して、それぞれ適切な場所にSQLiteの情報を作成する必要

                                              SQLiteでのデータ永続化 | Flutter Doc JP
                                            • LiteFS Cloud: Distributed SQLite with Managed Backups

                                              LiteFS Cloud: Distributed SQLite with Managed Backups Author Name Darla Magdalene Shockley Author Name Ben Johnson @benbjohnson @benbjohnson Image by Annie Ruygt With Fly.io, you can get your app running globally in a matter of minutes, and with LiteFS, you can run SQLite alongside your app! Now we’re introducing LiteFS Cloud: managed backups and point-in-time restores for LiteFS—whether your app

                                                LiteFS Cloud: Distributed SQLite with Managed Backups
                                              • GitHub - benbjohnson/postlite: Postgres wire compatible SQLite proxy.

                                                Postlite is a network proxy to allow access to remote SQLite databases over the Postgres wire protocol. This allows GUI tools to be used on remote SQLite databases which can make administration easier. The proxy works by translating Postgres frontend wire messages into SQLite transactions and converting results back into Postgres response wire messages. Many Postgres clients also inspect the pg_ca

                                                  GitHub - benbjohnson/postlite: Postgres wire compatible SQLite proxy.
                                                • 週刊Railsウォッチ(20210517前編)Bootstrap 5リリース、productionでSQLiteがwarning表示、rails-ujsの舞台裏ほか|TechRacho by BPS株式会社

                                                  週刊Railsウォッチについて 各記事冒頭には🔗でパーマリンクを置いてあります: 社内やTwitterでの議論などにどうぞ 「つっつきボイス」はRailsウォッチ公開前ドラフトを(鍋のように)社内有志でつっついたときの会話の再構成です👄 お気づきの点がありましたら@hachi8833までメンションをいただければ確認・対応いたします🙇 TechRachoではRubyやRailsなどの最新情報記事を平日に公開しています。TechRacho記事をいち早くお読みになりたい方はTwitterにて@techrachoのフォローをお願いします。また、タグやカテゴリごとにRSSフィードを購読することもできます(例:週刊Railsウォッチタグ) 🔗Rails: 先週の改修(Rails公式ニュースより) 今回は以下のコミットリストのChangelogを中心に見繕いました。 コミットリスト: Compa

                                                    週刊Railsウォッチ(20210517前編)Bootstrap 5リリース、productionでSQLiteがwarning表示、rails-ujsの舞台裏ほか|TechRacho by BPS株式会社
                                                  • GitHub - dpapathanasiou/simple-graph: This is a simple graph database in SQLite, inspired by "SQLite as a document database"

                                                    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                      GitHub - dpapathanasiou/simple-graph: This is a simple graph database in SQLite, inspired by "SQLite as a document database"
                                                    • EXCEL VBAメモ - SQLite3データベースのアクセス(SQLite ODBC使用) - hakeの日記

                                                      ExcelからODBC経由でSQLite3へアクセスする方法 準備 SQLite ODBC Driver からSQLite ODBC Driverをダウンロードしてインストールする。64bit版はsqliteodbc_w64.exe(現時点の最新はVer.0.9996) インストールを行うとsqlite3.dllがC:\Windows\System32に見つからないというメッセージが出るのでSQLite Home Pageからダウンロードして別途コピーする。(現時点の最新は、sqlite-dll-win64-x64-3260000.zip) アンインストール時の注意点 インストールすると、C:\Windows\System32にいくつかのsqlite3*.*というファイルがコピーされるが通常のアンインストールで削除されないファイルがあるので完全にアンインストールを行う場合には手動で削除する

                                                        EXCEL VBAメモ - SQLite3データベースのアクセス(SQLite ODBC使用) - hakeの日記
                                                      • Gada / ymtszw on Twitter: "SQLiteをwasmビルドしてブラウザで動くようにする →SQLiteはデータ実態が単一のDBファイル →このファイル読み出しをHTTP range requestに裏側ですげ替える実装を差し込む →DBファイルをGitHub… https://t.co/Nv7GGerExX"

                                                        SQLiteをwasmビルドしてブラウザで動くようにする →SQLiteはデータ実態が単一のDBファイル →このファイル読み出しをHTTP range requestに裏側ですげ替える実装を差し込む →DBファイルをGitHub… https://t.co/Nv7GGerExX

                                                          Gada / ymtszw on Twitter: "SQLiteをwasmビルドしてブラウザで動くようにする →SQLiteはデータ実態が単一のDBファイル →このファイル読み出しをHTTP range requestに裏側ですげ替える実装を差し込む →DBファイルをGitHub… https://t.co/Nv7GGerExX"
                                                        • LiteSync - SQLite Replication and Synchronization

                                                          Easy SYNCHRONIZATION of SQLite databases LiteSync allows your applications to easily keep their SQLite databases synchronized LiteSync library is bundled with SQLite code so we can use the same SQLite interface and existing wrappers. No need to learn other API.

                                                          • Scaling SQLite to 4M QPS on a Single Server (EC2 vs Bare Metal)

                                                            Expensify has an unusual technology stack in many ways.  For example, we don't use DNS internally -- just configuration-managed /etc/hosts files -- and it works great.  Similarly, we only make limited use of AWS -- instead hosting our own hardware for the web and database layer -- and it works great.  But most surprising of all is that we don't use MySQL or Postgres -- instead using none other tha

                                                              Scaling SQLite to 4M QPS on a Single Server (EC2 vs Bare Metal)
                                                            • Rails 7.1: SQLite3アダプタのデフォルトコネクション設定が最適化された(翻訳)|TechRacho by BPS株式会社

                                                              概要 元サイトの許諾を得て翻訳・公開いたします。 英語記事: Rails 7.1 comes with an optimized default SQLite3 adapter connection configuration - BigBinary Blog 原文公開日: 2023/10/30 原著者: Vishnu M 参考: 週刊Railsウォッチ20231004: SQLite3アダプタのコネクション設定のパフォーマンスチューニング Rails 7.1では、Active RecordのSQLite3アダプタのコネクション設定が現代のRailsアプリによりふさわしい形で更新されました。 設定の変更について説明する前に、PRAGMA(プラグマ)について理解しておきましょう。PRAGMAは特殊なSQLステートメントで、データベースのさまざまな振る舞いや設定をクエリまたは操作するのに用いら

                                                                Rails 7.1: SQLite3アダプタのデフォルトコネクション設定が最適化された(翻訳)|TechRacho by BPS株式会社
                                                              • SQLite3を簡単に使ってみる - Qiita

                                                                SQLiteは,小規模なデータベースをサクっと作りたいときに使われるデータベースマネジメントシステム(DBMS)のひとつです. データベースとは データを登録したり,削除したり,検索したりするシステムのこと. 参照:データベースのきほん いまさら聞けないデータベースとは? データベースの種類 MySQL PostgreSQL SQLite Oracle DB などがあります.(参照:MySQL、PostgreSQL、SQLite、Oracle DBの比較) 中でも,SQLite3はPythonの標準ライブラリに既に入っていて,機能が少なく,手軽に使えます. SQLite3の使い方 pythonとは別に,SQLを書く必要があります. #インポート import sqlite3 #データベースに接続 filepath = "test2.sqlite" conn = sqlite3.connec

                                                                  SQLite3を簡単に使ってみる - Qiita
                                                                • Google Sites: Sign-in

                                                                  Not your computer? Use a private browsing window to sign in. Learn more

                                                                    Google Sites: Sign-in
                                                                  • Cloud arch patterns

                                                                    Slides from a talk given at Nutanix on Mar 21, 2018Read less

                                                                      Cloud arch patterns
                                                                    • [JavaScript]Node.jsとDenoとBunでSQLite書き比べ(Pythonもあるよ)

                                                                      Intro Cloudflare D1の発表もあり、最近SQLiteが話題になることが増えましたがORMを使うユースケースが多く、ドライバーからSQL文を直接書いてやるやり方について毎回ググるのも面倒になってきたので、書き比べてこれをインポートしてこのメソッドをこう書いて引数と戻り値の型はこんな感じなんだな~みたいなことをまとめてインターネットに放流します。 6種類書きます。やっていきます。

                                                                        [JavaScript]Node.jsとDenoとBunでSQLite書き比べ(Pythonもあるよ)
                                                                      • 「管理表」や「一覧表」にまだExcel使ってる?SQLiteで簡単RDB化のすすめ | Raccoon Tech Blog [株式会社ラクーンホールディングス 技術戦略部ブログ]

                                                                        SQLiteExcel業務改善 情シス担当のますいです。 業務で「管理表」や「一覧表」を作成する機会は多いですよね。しかし数が増えるとデータを最新に保つのが大変です。 たとえば、弊社ではかつて人の異動やPCの入れ替えがあるたびに「資産管理表」「ソフトウェアライセンス割り当て表」「IPアドレス管理表」など様々なExcelファイルを更新する必要がありました。同じ情報を複数のファイルに同じように書き込む必要があって、運用していくうちに不整合が多発していました。 こんなとき、技術者ならこう考えることでしょう。「こういうデータってRDBで管理した方が楽だよな」と。 Excelの操作感とリレーショナルなデータ管理の両立 RDBによるデータ管理は整合性の面では運用管理がしやすいですが、更新のためにいちいちSQLを書くのは不便。MS Access を利用するのも1つの手ですが、XLOOKUPを駆使したりP

                                                                          「管理表」や「一覧表」にまだExcel使ってる?SQLiteで簡単RDB化のすすめ | Raccoon Tech Blog [株式会社ラクーンホールディングス 技術戦略部ブログ]
                                                                        • GitHub - simonw/sqlite-utils: Python CLI utility and library for manipulating SQLite databases

                                                                          You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                                            GitHub - simonw/sqlite-utils: Python CLI utility and library for manipulating SQLite databases
                                                                          • PythonからSQLite3で初めてのデータベース! - Qiita

                                                                            個人的な備忘録も兼ねて。 基本的な操作に関しては公式ドキュメントの上側に書いてあるものがとてもわかりやすいのでそちらも参照すると良い この文章の中ではPythonとSQL文がごっちゃになっているので、Pythonには左上にpythonと書いてあります。 pythonから扱うには基本的には import sqlite3 conn = sqlite3.connect('example.sqlite3') c = conn.cursor() c.execute('create table persons(id integer, name text, birthday)')

                                                                              PythonからSQLite3で初めてのデータベース! - Qiita
                                                                            • hctree: doc/hctree/index.html

                                                                              HC-tree SQLite is sometimes used as the core of a client/server database system. While it works reliably well in such cases, the database backend module that it uses to store b-tree structures in its database file was not designed with this case in mind and can be improved upon in several ways. The HC-tree (hctree) project is an attempt to develop a new database backend that improves upon regular

                                                                              • GitHub - x2bool/xlite: Query Excel spredsheets (.xlsx, .xls, .ods) using SQLite

                                                                                You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                                                  GitHub - x2bool/xlite: Query Excel spredsheets (.xlsx, .xls, .ods) using SQLite

                                                                                新着記事