GithubHelp home page GithubHelp logo

Comments (7)

psarna avatar psarna commented on June 30, 2024

Oh we are exploring that as well! https://github.com/libsql/sqld/blob/main/sqld/src/libsql/mwal/mod.rs , right now it works on top of a fork of mvSQLite which implements a frontend with virtual WAL instead of VFS: https://github.com/psarna/mvsqlite/tree/mwal

from libsql.

psarna avatar psarna commented on June 30, 2024

And we're interested in the other way round, i.e. making libSQL better suited to run mvSQLite as well, e.g. #11, #12, #20

from libsql.

fire avatar fire commented on June 30, 2024

Did you document the steps needed to convert libsql to mvsqlite?

from libsql.

fire avatar fire commented on June 30, 2024

Also I am investigating how to have a limit of 15 seconds or less configuration option for timeouts in wasmtime

from libsql.

psarna avatar psarna commented on June 30, 2024

Did you document the steps needed to convert libsql to mvsqlite?

What do you mean by convert? One of the ways mvSQLite is used is to just LD_PRELOAD an application that uses SQLite with a mvSQLite library - you can do exactly the same with an application that uses libSQL, and it will work (https://su3.io/posts/mvsqlite#drop-in-addition), because libSQL is compatible with SQLite ABI.

from libsql.

fire avatar fire commented on June 30, 2024

My goal is to make a static library and merge it with my variation of the Godot Engine.

Problems

  1. static library linking is broken in the official release of libsql for wasm
  2. libsql as sqlite3.h / sqlite3.cpp for mvsqlite requires changes to rename "sqlite3_step" to "real_sqlite3_step" and "sqlite3_open_v2" to "real_sqlite3_open_v2"

from libsql.

psarna avatar psarna commented on June 30, 2024

static library linking is broken in the official release of libsql for wasm
@fire can you post the steps to reproduce your issue with static linking? It works for libsql/sqlite3 shell just fine on my x86-64, maybe it's an arch issue?

It's also worth noting that Wasm UDF support, being written in Rust, is not part of the single amalgamation sqlite3.c file, and is instead produced as a static library, libwblibsql.a, which you can find precompiled in .libs directory of libsql-0.1.0-wasm-udf.tar.gz file from our official release.

Alternatively, if you compile from source, the static library can also be found in ./libwblibsql.a.

And if you're integrating Wasm support with a Rust application, it's best to skip linking with the static library and instead integrate directly with the Rust crate: https://crates.io/crates/libsql-wasmtime-bindings.

It's now definitely clear to me that the process is not documented, which makes it hard for users to consume, and we should fix that. But please also let me know if any of the paragraphs above helped!

from libsql.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.