Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Statement add new API for execute to clean Vala/GObject API #1286

Closed
wants to merge 2 commits into from

Commits on Nov 10, 2023

  1. feat(glib): add Vala VAPI for GADBC

    Vala VAPI file is generated for current GADBC 1.0 API version.
    
    It is disable by default, but recommended to be enable when
    a development package is distributed.
    
    This commit force a 1.0 API versioning, replacing the old one
    where 0 were used for GIR API version (gir_version), so now
    shows '1.0' instead of '0.0'.
    
    Also examples are provided for C and Vala.
    esodan committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    d8fba5d View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2023

  1. feat(glib): Add convenience API for statement execution

    * New Statement.execute_query() for queries without results or ignoring them
    * New Statement.execute_reader() for queries returning results and converting
    them to GArrowRecordBatchReader
    
    Above methods allows to ignore extrange API current in Statement.execute()
    when using on Vala
    esodan committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    bedfb24 View commit details
    Browse the repository at this point in the history