Coder Social home page Coder Social logo

Comments (3)

vamega avatar vamega commented on August 15, 2024

I don't think this will work correctly with turbodbc.
When I remove the self.isdelete from the pre_exec method in base.py, I get a MemoryError: bad allocation. I'll try to do some more digging and see if I can make a reproducible test case.

The current spot where I see this has a very large number of parameters.

from sqlalchemy-exasol.

vamega avatar vamega commented on August 15, 2024

Actually, I think this cannot be removed yet.
Reducing the number of parameters caused me to bump into this error:

Feature not supported: Prepared DELETE with parameterized condition other than <column name> = ? or unsupported type

My condition was to delete using an IN clause.

Using the current logic for statement construction, it appears that there is excessive allocation happening in the pre_exec, since it performs repeated string replacement.

I will provide a PR that changes this to use a template based single replacement, since that should dramatically increase performance when there are a large number of parameters.

from sqlalchemy-exasol.

jank avatar jank commented on August 15, 2024

@vamega reading the EXASOL ticket https://www.exasol.com/support/browse/EXASOL-875

Currently, a DELETE statement may only have one prepared parameter.
We will allow multiple parameters, but only if they are no expressions and combined via AND, e.g. "col1=? AND col2=?".

only a special case for parameterized DELETE was implemented.

from sqlalchemy-exasol.

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.