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

Prepared queries and parameter support for Firebird #103

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Nov 29, 2018

  1. Prepared queries and parameter support

     * New con:prepare method returning a prepared statement
     * Both con:execute and stmt:execute now take optional arguments to pass to the SQL query
    
    e.g.
    ```lua
    stmt = con:prepare("INSERT INTO T1(F1,F2) VALUES(?,?)")
    stmt:execute(12, 34)
    ```
    scott committed Nov 29, 2018
    Configuration menu
    Copy the full SHA
    25f9c04 View commit details
    Browse the repository at this point in the history