FLUTTER ECOSYSTEM

simolus3/sqlite3.dart

Dart 的 sqlite3 綁定

sqlite3.dart 專案封面
Stars
298
Forks
123
最近推送(UTC)
2026年9月16日
專案狀態
未封存
Simon Binder GitHub avatar
GITHUB User

Simon Binder ↗

PowerSyncDarmstadt官方網站 ↗
語言DartTypeScriptCRustHTMLCMakeJavaScriptShell

使用的依賴

依賴清單 7 項

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

sqlite3.dart

This project contains Dart packages to use SQLite from Dart via dart:ffi.

The main package in this repository is sqlite3, which contains all the Dart apis and their implementation. package:sqlite3 is a pure-Dart package without a dependency on Flutter. It can be used both in Flutter apps or in standalone Dart applications.

package:sqlite3_test contains utilities that make integrating SQLite databases into Dart tests easier. In particular, they patch CURRENT_TIMESTAMP and related constructs to return the (potentially faked) time returned by package:clock.

package:sqlite3_web contains helpers for running SQLite on the web, including code to compile web workers that help with the process.

package:sqlite3_connection_pool provides an asynchronous connection pool for SQLite that works well across isolates.

Example Usage

A file with basic usage examples for pure Dart can be found here.