We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, first off I absolutely love your work here.
But is there any existing support for creating custom SQLite functions or could it be added?
Example:
from sqlalchemy import create_engine conn = create_engine('sqlite://') conn.execute('create table test(example_txt_col text)') conn.execute("insert into test values ('example text')") def to_upper(txt): return txt.upper() connection = conn.raw_connection() connection.create_function('to_upper', 1, to_upper) print(conn.execute("select to_upper(example_txt_col) words from test").fetchall()[0][0])
The text was updated successfully, but these errors were encountered:
this is supported beginning in version 0.5.1 of our fork
Sorry, something went wrong.
No branches or pull requests
Hello, first off I absolutely love your work here.
But is there any existing support for creating custom SQLite functions or could it be added?
Example:
The text was updated successfully, but these errors were encountered: