Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

並び順

ブックマーク数

期間指定

  • から
  • まで

121 - 160 件 / 306件

新着順 人気順

SQLiteの検索結果121 - 160 件 / 306件

  • GitHub - chartdb/chartdb: Database diagrams editor that allows you to visualize and design your DB with a single query.

    ChartDB is a powerful, web-based database diagramming editor. Instantly visualize your database schema with a single "Smart Query." Customize diagrams, export SQL scripts, and access all features—no account required. Experience seamless database design here. What it does: Instant Schema Import Run a single query to instantly retrieve your database schema as JSON. This makes it incredibly fast to v

      GitHub - chartdb/chartdb: Database diagrams editor that allows you to visualize and design your DB with a single query.
    • typeorm + absurd-sql on Browser のロマン構成

      ロマン構成が動いたので紹介します。 コード: https://github.com/mizchi/absurd-sql-example-with-typeorm デモ: https://heuristic-perlman-94f8f4.netlify.app tldr Steam の某クリッカーゲームをやってたら放置ゲーでも作りたい気分になってきた。 複雑なデータを管理するならブラウザ内に本物の sqlite を持ってきたい sqlite は持ってこれたけど TS の中で 生 SQL 書くのがだるかった(補完支援がない)ので ORM でラップしたい Typeorm + absurd-sql の構成を試したら色々大変だったけど動いた つまりブラウザでこのコードが動く。 // ... @Entity() class User { @PrimaryGeneratedColumn() id: nu

        typeorm + absurd-sql on Browser のロマン構成
      • GitHub - asg017/sqlite-lines: A SQLite extension for reading large files line-by-line (NDJSON, logs, txt, etc.)

        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 - asg017/sqlite-lines: A SQLite extension for reading large files line-by-line (NDJSON, logs, txt, etc.)
        • ISUCON12予選通過しそうでした - maybe daily dev notes

          ISUCON12予選に参加しました!結果、スコア自体は予選ボーダー通過していましたが追試で失格でした 😭😭😭 チームいすもなで参加 もなちゃんすまん… 通過した気満々で参加記事書いてましたが、供養のため投稿します。 なお過去にはISUCON9, 11に参加していずれも上位30~50%tileくらいに留まったので、今回はその反省も踏まえつつ準備しました。 今回の方針 Go使う 大きな変化はこれです。ISUCONで使う言語は実質RubyとGoの二択だと思ってます (他の言語はISUCON向けの情報が充実してない印象) が、これまでは業務でGoを使ったことがないのでRubyを選択してました。ただしRubyは以下のつらみが見過ごせませんでした: 諸々のツール (profilerなど) が古く使いづらい unicorn/pumaの設定などチューニング項目も増える 静的解析が弱いゆえにデプロイし

            ISUCON12予選通過しそうでした - maybe daily dev notes
          • GitHub - pocketbase/pocketbase: Open Source realtime backend in 1 file

            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 - pocketbase/pocketbase: Open Source realtime backend in 1 file
            • 【自然言語処理のためのWikipediaデータの扱い方(#1) 】Wikipedia記事DBの作成 - Qiita

              自然言語処理で遊ぶための学習用データとして魅力的なWikipediaのデータですが、ダウンロード可能なDumpデータは3GB程度と容量が大きく、形式はXMLデータだったりと扱うのが大変です。もしDBに格納されていれば条件検索して記事数など確認しながら必要なデータだけ取り出すことができて便利です。今回はファイルとして持ち運びにも便利なSQLiteでWikipediaの記事DBを作成します。 目的 ・Wikipediaの記事データをDB(SQLite)に格納する ・記事名でパターン検索して、タイトルに特定の文字を含む記事データを抽出してみる。 方法(概要) ・Wikipadiaのダンプデータをダウンロードする ・Wikiextractorでテキストを整形しつつjsonデータとして抽出する ・抽出したjsonデータを拙作のPythonスクリプトwikiextractor2sqlite(※)を用い

                【自然言語処理のためのWikipediaデータの扱い方(#1) 】Wikipedia記事DBの作成 - Qiita
              • Cloudflare D1 のチュートリアルをやってみる - Qiita

                2022年に発表され話題となっている Cloudflare D1、未だアルファ版のようですがすでにいろいろと触ってみた方も多いかと思います。 自分はVantiqという会社で自社製品であるVantiq Platform 上のアプリケーション開発・アーキテクチャ設計を業務として行っているわけですが、様々なクラウドサービスと自社製品をどう組み合わせたら面白いことができるかなと日々考えたりもしています。 Cloudflare D1 も気になっていたところで、公式のチュートリアル をやってみて、実際に手を動かして概要を理解してみたいと思います。 Cloudflare D1 とは Cloudflareが提供する、エッジロケーションに配置されたSQLiteベースのリレーショナルデータベースです。 概要は公式ドキュメントや他に秀逸な記事があるので読んでいただくとして、個人的に興味深いのは 分散データベース

                  Cloudflare D1 のチュートリアルをやってみる - Qiita
                • GitHub - sql-js/sql.js: A javascript library to run SQLite on the web.

                  const initSqlJs = require('sql.js'); // or if you are in a browser: // const initSqlJs = window.initSqlJs; const SQL = await initSqlJs({ // Required to load the wasm binary asynchronously. Of course, you can host it wherever you want // You can omit locateFile completely when running in node locateFile: file => `https://sql.js.org/dist/${file}` }); // Create a database const db = new SQL.Database(

                    GitHub - sql-js/sql.js: A javascript library to run SQLite on the web.
                  • GitHub - frectonz/pglite-fusion: Embed an SQLite database in your PostgreSQL table. AKA multitenancy has been solved.

                    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 - frectonz/pglite-fusion: Embed an SQLite database in your PostgreSQL table. AKA multitenancy has been solved.
                    • SQLite が Git を使用しない理由 [ja]

                      1. Introduction SQLite は Git バージョン管理システムを使用しません。 SQLite は代わりに Fossil を使用します。これは、 SQLite をサポートするために特別に設計および作成されたバージョン管理システムです。 なぜ SQLite が他の製品のように Git バージョン管理システムを使用しないのか疑問に思う人がよくいます。この記事ではその質問に答えようとします。また、 section 3 では、この記事は Git ユーザーに SQLite ソース コードに簡単にアクセスする方法に関するヒントを提供します。 この記事は Fossil と Git の比較ではありません。2 つのシステムの比較については、 https://fossil-scm.org/fossil/doc/trunk/www/fossil-v-git.wiki を参照してください。他のサー

                      • 今年もミクシィの22新卒技術研修の資料と動画を公開していきます!(ゴールデンウィーク前編)

                        昨年同様ミクシィの22新卒技術研修の資料と動画を公開していっています。まだ研修中なので、一部の公開にはなりますが、ぜひゴールデンウィーク中の学習にお使いください。

                          今年もミクシィの22新卒技術研修の資料と動画を公開していきます!(ゴールデンウィーク前編)
                        • GitHub - trailbaseio/trailbase: A blazingly fast, open-source application server with type-safe APIs, built-in JS/ES6/TS Runtime, Auth, and Admin UI built on Rust, SQLite & V8.

                          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 - trailbaseio/trailbase: A blazingly fast, open-source application server with type-safe APIs, built-in JS/ES6/TS Runtime, Auth, and Admin UI built on Rust, SQLite & V8.
                          • GitHub - tconbeer/harlequin: The SQL IDE for Your Terminal.

                            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 - tconbeer/harlequin: The SQL IDE for Your Terminal.
                            • GitHub - tursodatabase/limbo: Limbo is a work-in-progress, in-process OLTP database management system, compatible with 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 - tursodatabase/limbo: Limbo is a work-in-progress, in-process OLTP database management system, compatible with SQLite.
                              • From Web SQL to SQLite Wasm: the database migration guide  |  Blog  |  Chrome for Developers

                                CREATE TABLE IF NOT EXISTS rainstorms (mood text, severity int); INSERT INTO rainstorms(mood,severity) VALUES ('somber','6'); INSERT INTO rainstorms(mood,severity) VALUES ('rainy','8'); INSERT INTO rainstorms(mood,severity) VALUES ('stormy','2'); Importing the data into SQLite Wasm All that remains is executing these SQL commands in the context of SQLite Wasm. For all details regarding setting SQL

                                • Introducing LiteFS

                                  Introducing LiteFS Author Name Ben Johnson @benbjohnson @benbjohnson Image by Annie Ruygt Fly.io runs apps close to users by taking containers and upgrading them to full-fledged virtual machines running on our own hardware around the world. We’re also building an open-source distributed file system for SQLite called LiteFS which is pretty cool too. Give us a whirl and get up and running quickly. F

                                    Introducing LiteFS
                                  • sqlite3 WebAssembly & JavaScript Documentation Index

                                    This site is home to the documentation for the SQLite project's WebAssembly- and JavaScript-related APIs, which enable the use of sqlite3 in modern WASM-capable browsers. These components were initially released for public beta with version 3.40 and will tentatively be made API-stable with the 3.41 release, pending community feedback. Disclaimer: this site requires a modern, JavaScript-capable bro

                                    • GitHub - narumatt/sqlitefs: sqlite as a filesystem

                                      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 - narumatt/sqlitefs: sqlite as a filesystem
                                      • 22-Year-Old Vulnerability Reported in Widely Used SQLite Database Library

                                        A high-severity vulnerability has been disclosed in the SQLite database library, which was introduced as part of a code change dating all the way back to October 2000 and could enable attackers to crash or control programs. Tracked as CVE-2022-35737 (CVSS score: 7.5), the 22-year-old issue affects SQLite versions 1.0.12 through 3.39.1, and has been addressed in version 3.39.2 released on July 21,

                                          22-Year-Old Vulnerability Reported in Widely Used SQLite Database Library
                                        • GitHub - QuadrupleA/sqlite-page-explorer: Visual tool to explore SQLite databases page-by-page, the way they're stored on disk and the way SQLite sees them.

                                          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 - QuadrupleA/sqlite-page-explorer: Visual tool to explore SQLite databases page-by-page, the way they're stored on disk and the way SQLite sees them.
                                          • Introducing sqlite-vss: A SQLite Extension for Vector Search

                                            Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out. Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.

                                              Introducing sqlite-vss: A SQLite Extension for Vector Search
                                            • ISUCON12予選参加記 Rustで予選突破した

                                              2022年7月23日(土) に開催された ISUCON 12 に Rust で参加して20位で予選突破しました。 チーム チームO omu: https://omuric.github.io/posts/isucon12-qualify/ dice801: https://zenn.dev/dice801/articles/760f8fc6af5a08 daiju (自分) 事前準備 基本的には前年までに用意したツールを活用する cargo-make で3台の EC2 への deploy や再起動やログの集計をコマンド一発で実行可能にする isuconf で現地と手元の設定ファイルの同期 omu の自作コマンド どちらも年に1回しか登場しないので、事前の練習でコマンドを手に馴染ませておく。 Rust のためのトレースツールの整備 https://github.com/hinohi/rust

                                                ISUCON12予選参加記 Rustで予選突破した
                                              • Code Of Ethics

                                                1. History This document was originally called a "Code of Conduct" and was created for the purpose of filling in a box on "supplier registration" forms submitted to the SQLite developers by some clients. However, we subsequently learned that "Code of Conduct" has a very specific and almost sacred meaning to some readers, a meaning to which this document does not conform [1][2][3]. Therefore this d

                                                • Cloudflare D1でCloudflareワーカーのための分散SQLiteを提供

                                                  Spring BootによるAPIバックエンド構築実践ガイド 第2版 何千人もの開発者が、InfoQのミニブック「Practical Guide to Building an API Back End with Spring Boot」から、Spring Bootを使ったREST API構築の基礎を学んだ。この本では、出版時に新しくリリースされたバージョンである Spring Boot 2 を使用している。しかし、Spring Boot3が最近リリースされ、重要な変...

                                                    Cloudflare D1でCloudflareワーカーのための分散SQLiteを提供
                                                  • The how and why of optimal performance | Fractaled Mind

                                                    SQLite on Rails: The how and why of optimal performance Over the last year or so, I have found myself on a journey to deeply understand how to run Rails applications backed by SQLite performantly and resiliently. In that time, I have learned various lessons that I want to share with you all now. I want to walk through where the problems lie, why they exist, and how to resolve them. And to start, w

                                                    • GitHub - dgllghr/stanchion: A SQLite extension that brings column-oriented tables to SQLite

                                                      Stanchion is a SQLite 3 extension that brings the power of column-oriented storage to SQLite, the most widely deployed database. SQLite exclusively supports row-oriented tables, which means it is not an ideal fit for all workloads. Using the Stanchion plugin brings all of the benefits of column-oriented storage and data warehousing to anywhere that SQLite is already deployed, including your existi

                                                        GitHub - dgllghr/stanchion: A SQLite extension that brings column-oriented tables to SQLite
                                                      • ISUCON12 チーム :old_noto_innocent: で予選突破した #isucon - 私が歌川です

                                                        今年も id:nonylene id:wass80 と出場しました。最終スコアは50,696点で予選突破できました。分析基盤 (Kibanaやプロファイラ) に流れてきたデータを見つつ作戦を立てて実装する、という流れがうまくはまって順調にチューニングを進められたのがよかったと思います。 最終的なサーバー構成 isuports-1 App (Go) nginx isuports-2 DB (MySQL, player_scoreのみ) isuports-3 DB (MySQL) やったこと リポジトリはこちらです。 github.com 分析基盤まわりの話を id:nonylene が書いてくれたので、こちらもあわせてどうぞ。 nonylene.hatenablog.jp id:wass80 視点の記事もあるので、こちらもあわせてどうぞ。 memo.wass80.xyz テナントごとのDBを

                                                          ISUCON12 チーム :old_noto_innocent: で予選突破した #isucon - 私が歌川です
                                                        • GitHub - sqlfluff/sqlfluff: A modular SQL linter and auto-formatter with support for multiple dialects and templated code.

                                                          Although SQL is reasonably consistent in its implementations, there are several different dialects available with variations of syntax and grammar. SQLFluff currently supports the following SQL dialects (though perhaps not in full): ANSI SQL - this is the base version and on occasion may not strictly follow the ANSI/ISO SQL definition Athena BigQuery ClickHouse Databricks (note: this extends the s

                                                            GitHub - sqlfluff/sqlfluff: A modular SQL linter and auto-formatter with support for multiple dialects and templated code.
                                                          • しくじり先生のように学ぶ「NFS+sqliteで苦労した話から学ぶ、問題解決の考え方」という勉強会をやってみました | Raccoon Tech Blog [株式会社ラクーンホールディングス 技術戦略部ブログ]

                                                            株式会社ラクーンホールディングスのエンジニア/デザイナーから技術情報をはじめ、世の中のためになることや社内のことなどを発信してます。 インフラLinux勉強会SQLiteNFS こんにちは、羽山です。 今回は社内で実施した勉強会をほぼそのままブログ記事にしています。 ITエンジニアたるものドキュメントを残したり勉強会を実施したり分かりやすい設計にリファクタリングしたりなど、日々 知見の伝達 を意識していると思います。主要な知見はたいていそれらの方法で満たせるのですが、しかし残念ながら中には画一的な方法では伝えにくいものもあったりします。 ところで伝統芸能や工芸の世界では技術の継承において 背中を見て学ぶ という方法が用いられることがあるようです。 これと似た手法はITエンジニアの世界にもあって、先輩エンジニアとペアプログラミングをすることで文書では伝わりにくい技術や考え方・テクニックを学ぶ

                                                              しくじり先生のように学ぶ「NFS+sqliteで苦労した話から学ぶ、問題解決の考え方」という勉強会をやってみました | Raccoon Tech Blog [株式会社ラクーンホールディングス 技術戦略部ブログ]
                                                            • Skip the API, Ship Your Database

                                                              Skip the API, Ship Your Database 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. Try it out for yourself! My favorite part about building tools is discover

                                                                Skip the API, Ship Your Database
                                                              • Stranger Strings: An exploitable flaw in SQLite

                                                                By Andreas Kellas Trail of Bits is publicly disclosing CVE-2022-35737, which affects applications that use the SQLite library API. CVE-2022-35737 was introduced in SQLite version 1.0.12 (released on October 17, 2000) and fixed in release 3.39.2 (released on July 21, 2022). CVE-2022-35737 is exploitable on 64-bit systems, and exploitability depends on how the program is compiled; arbitrary code exe

                                                                  Stranger Strings: An exploitable flaw in SQLite
                                                                • Collection of insane and fun facts about SQLite - blag

                                                                  SQLite is the most deployed and most used database. There are over one trillion (1000000000000 or a million million) SQLite databases in active use. It is maintained by three people. They don’t allow outside contributions. SQLite is likely used more than all other database engines combined. Billions and billions of copies of SQLite exist in the wild. It’s everywhere. It is also probably one of the

                                                                  • GitHub - aerotoad/neboa: Type-safe NoSQL with Node & 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 - aerotoad/neboa: Type-safe NoSQL with Node & SQLite. 🌫️💽
                                                                    • GitHub - nalgeon/sqlean: The ultimate set of SQLite extensions

                                                                      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/sqlean: The ultimate set of SQLite extensions
                                                                      • High-precision date/time in SQLite

                                                                        While SQLite provides a certain number of date functions, I wanted something more. So I've created sqlean-time — a high-precision date/time extension with a structured API and a rich set of functions. Note. Adding extensions to SQLite is a breeze. Download a file, run one database command — and you are good to go. Concepts • Creating values • Extracting fields • Unix time • Time comparison • Time

                                                                          High-precision date/time in SQLite
                                                                        • Introducing Limbo: A complete rewrite of SQLite in Rust

                                                                          Dec 10, 2024 Introducing Limbo: A complete rewrite of SQLite in Rust 2 years ago, we forked SQLite. We were huge fans of the embedded nature of SQLite, but longed for a more open model of development. libSQL was born as an Open Contribution project, and we invited the community to build it with us. As a result, libSQL is an astounding success. With over 12k GitHub stars, 85 contributors, and featu

                                                                            Introducing Limbo: A complete rewrite of SQLite in Rust
                                                                          • Let’s make WordPress officially support SQLite

                                                                            Welcome! The WordPress coreCore Core is the set of software required to run WordPress. The Core Development Team builds WordPress. development team builds WordPress! Follow this site for general updates, status reports, and the occasional code debate. There’s lots of ways to contribute: Found a bugbug A bug is an error or unexpected result. Performance improvements, code optimization, and are cons

                                                                              Let’s make WordPress officially support SQLite
                                                                            • Database Remote-Copy Tool For SQLite

                                                                              1. Overview The following command causes REPLICA to become a copy of ORIGIN: Use the --help or -? flag to see the complete list of options. Option flags may appear before, after, or between the ORIGIN and REPLICA arguments. Add the -v option to see more output, in a format similar to "rsync". 2. Features One or the other of ORIGIN or REPLICA may be of the form "USER@HOST:PATH". The other is just a

                                                                              • #isucon チーム「シン・ウー馬場ーイー2」でISUCON12予選に参加し2位で予選突破しました

                                                                                今年も例年通り @matsuu、 @ishikawa84g と参加しました。 一昨年のチーム名は「ウー馬場ーイーツ」。去年は「ウー馬場ーイー2」。 今年は「シン・ウー馬場ーイー2」。 今年は @matsuu が "予選参加権つき個人スポンサー" を購入してくれたので予選参加申込競争は回避。便乗させてもらいました。 結果は一般枠2位で本選進出! ISUCON12 オンライン予選 予選結果と本選出場者決定のお知らせ : ISUCON公式Blog 役割分担はこれまたいつも通りこんな感じ。 @matsuu バリバリ実装する前衛 @ishikawa84g サイトやレギュレーションやコードやログやDiscordを見る情報官 @netmarkjp 司令塔 アプリはgo実装で、競技時間終了時点のスコアは75800。 ベストスコアは76535。 最終スコアは75800でした。 ISUCON12 オンライン予

                                                                                • 『データ分析のためのSQL勉強会〜実践編〜』資料公開|高橋 光 | 著書『データ分析力を高める ビジネスパーソンのためのSQL入門』

                                                                                  資料概要今回は実践編ということなのでSQLの基礎を理解した上で、実際の問題を解きながらデータ分析で使うSQLを学んでもらいたいと思います。 ケーススタディとして、架空のECサイトのデータ分析を行うことを想定して、以下10問のデータ分析課題を考えてもらうようにしています。 SQL勉強会実践編問題集10選それぞれ難易度とヒントを資料の中に記載しているので、簡単な集計から少し複雑な集計まである程度幅広く出題してあります。 ヒントに関しては各問題ごとに合計3つ載せているので、まずは自分でゼロベースで考えながら必要に応じてヒントも見てもらえればと思います。 解説も載せてあるので、最後は答え合わせをしながら、求めたいデータに対してどんなSQLを書くことで得られるのかを確認していただければと思います。 進め方SQL実行環境基本的には前回の初級編や書籍で紹介している通りハンズオン形式で進めてもらいたいと思

                                                                                    『データ分析のためのSQL勉強会〜実践編〜』資料公開|高橋 光 | 著書『データ分析力を高める ビジネスパーソンのためのSQL入門』

                                                                                  新着記事