Git Product home page Git Product logo

Comments (1)

coleifer avatar coleifer commented on August 17, 2024

I don't believe this is do-able. Read the SQLite virtual tables API doc for background. What vtfunc does is it takes your TableFunction and tells sqlite (via sqlite3_create_module) that the table function provides a virtual table and implements x, y, z methods. vtfunc makes an additional caveat in the way it declares its callbacks that it is an eponymous-only virtual table (e.g., you cannot create virtual table ... with the tablefunction module). When sqlite sees us querying our virtual table directly, it calls the xConnect callback we registered. At this point we have no information about the query, the parameters, the row values...nothing...and we need to tell sqlite the structure of our table (sqlite3_declare_vtab). If you look in the code for pwConnect you'll see that there's no TableFunction instance in there -- because we don't have enough information yet to create one. That happens later in the xOpen callback.

from sqlite-vtfunc.

Related Issues (12)

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.