Skip to content

0.1.6

Latest

Choose a tag to compare

@Gioee Gioee released this 11 Feb 13:00

Packages

Flutter/Dart: flutter pub add sqlite_agent:0.1.6 or dart pub add sqlite_agent:0.1.6
Node: npm install @sqliteai/sqlite-agent
Android: ai.sqlite:agent:0.1.6
Swift: Installation Guide

Installation

macOS:

wget https://github.com/sqliteai/sqlite-agent/releases/download/0.1.6/agent-macos-0.1.6.tar.gz
tar -xzf agent-macos-0.1.6.tar.gz
sqlite3 :memory: ".load ./agent.dylib" "SELECT agent_version();"

Linux:

wget https://github.com/sqliteai/sqlite-agent/releases/download/0.1.6/agent-linux-x86_64-0.1.6.tar.gz
tar -xzf agent-linux-x86_64-0.1.6.tar.gz
sqlite3 :memory: ".load ./agent.so" "SELECT agent_version();"

Windows:

Invoke-WebRequest -Uri "https://github.com/sqliteai/sqlite-agent/releases/download/0.1.6/agent-windows-x86_64-0.1.6.zip" -OutFile "agent.zip"
Expand-Archive -Path "agent.zip" -DestinationPath "."
sqlite3 :memory: ".load ./agent.dll" "SELECT agent_version();"

Full Changelog: 0.1.5...0.1.6