Giter VIP home page Giter VIP logo

Comments (4)

IL2 avatar IL2 commented on September 25, 2024

Problem is executing
cmd.Execute(v,EmptyParam,0);
but second parameter in Execute is defined using var
function Execute(out RecordsAffected: OleVariant; var Parameters: OleVariant; Options: Integer): Recordset15; safecall;

from xxm.

stijnsanders avatar stijnsanders commented on September 25, 2024

Ah yes. I've noticed newer Delphi versions have done something strange to EmptyParam. You can fix this for now just by adding a local var v1:OleVariant; then first v1:=EmptyParam; and then use that v1 instead of EmptyParam. I need it investigate further, but I guess Null could work also.

from xxm.

IL2 avatar IL2 commented on September 25, 2024

You are correct EmptyParam is declared as function since XE6 http://www.desiderata.com.au/blog/?p=652 in System.Variants.pas:
function EmptyParam: OleVariant;
begin
SetClearVarToEmptyParam(TVarData(Result));
end;
var v1:OleVariant;
v1:=EmptyParam;
is a correct way of using EmptyParam for function calls with vars.

from xxm.

stijnsanders avatar stijnsanders commented on September 25, 2024

I'll close this issue for now, and note down that maybe later I'll add var v:OleVariant; v:=EmptyParam; to the source. I've checked a project at work where we had the same problem, and there we settled for cmd.Execute(cmdText,POleVariant(nil)^,0) which also works (but is very, very ugly)...

from xxm.

Related Issues (5)

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.