English 中文(简体)
如何使用 TADOCommand 参数查询来参数化最宽环?
原标题:How to parameterize widestrings using TADOCommand parameterized query?

我正在尝试使用与 Delphi TADOCommand 的参数查询 :

var 
   s: WideString;
   cmd: TADOCommand;  
   recordsAffected: OleVariant;
begin
   cmd := TADOCommand.Create(nil);
   cmd.Connection := Connection;
   cmd.CommandText :=  INSERT INTO Sqm(Filename) VALUES(:filename) ;

   s := AFilename;
   cmd.Parameters.ParamByName( filename ).Value := s;
   cmd.Execute();

数据库中产生的数据被完全混合:

C.A.A.O.I.A.A.P.I.A.A.P.A.P.D?A.L.O?A.A.A.A.A.A.A.A.A.A.A.P.D?A.D?A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.A.


i < strong > can 使用本地参数化 ADO Command 对象。 它保存数据正确 :

C̬:Ȗŝḙr͇s̶i̜ẵn̥.ÀV̹AͧT̶O̠P̩I̿ȀA͜p̥p̔D͑ẫt̒āL̫o͋ɕălͭA̼v̼ẵt͈ấr̄ S̫o̖f͎t̻w̵ạr͂ẽ C̾r̮ḛẵt͘iͩo̳n̬s̨S̪ōf̒t͘w̚âr̿ɇ Qͬüẳlͮi̫tͥy̽ M͘ȇt̨r̟i̻çšC͍MͥS̚-s̞q̕m͜00.xͤm̧l̝

但它的非常脆弱,不适合生产用途

在德尔斐语中如何使用有 TADOCommand 的unicode/WideStrings?

< 坚固 > Bonus 聊天 < /坚固 >

在 SQL 服务器配置文件中, 您可以看到 SQL 正在执行 :

Exec sp_executeesql N INSERT into Sqm (P1), N@P1 char(300),@P2 text, C? Us? er? i?

从而指出问题 - 它正在将 < code> WideString 参数构建为 < code> char( 300) 值, 使其不破损 。

我最后一次看到我的宽链 在它掉进参数洞之前是:

ParameterObject.Value := NewValue;

何 地

  • NewValue is a variant of type VT_BSTR (aka varOleStr) with the proper value
  • ParameterObject is a native ADO _Parameter object, with a .Type of 129 (adChar)

甚至试图强制参数类型 :

cmd.Parameters.ParamByName( filename ).DataType := ftWideString;
cmd.Parameters.ParamByName( filename ).Value := s;

没有帮助。

注: 这个问题是关于如何将 INSTERT(价值) VALUES(%s) 与 foo(价值) VALUES(%s) 相配的系列的一部分。

最佳回答

答案是,在德尔菲(5)中无法做到这一点。

它可以被固定在更新版的德尔菲书中, 但是没有任何人来测试它,我们不知道。

Q.: How to parameterize widestrings using TADOCommand parameterized query?
A.: You can t. Sorry for the inconvience.

问题回答

如何使用

cmd.Parameters.ParamByName( filename ).Value := WideStringToUCS4String(s);

顺便说一句,S被宣布为最广泛。 是否有必要拥有最广泛?

var
  s : String; 

在系统.pas中,UCS4String(UCS-4字节或UTF-32比特)被宣布为:

...
...
UCS4Char = type LongWord;
...
UCS4String = array of UCS4Char;
...
function WideStringToUCS4String(const S: WideString): UCS4String;
...
function UCS4StringToWidestring(const S: UCS4String): WideString;

您将文件名列存储为? sql 服务器 2000 能够处理 UTF-32 字符串吗?





相关问题
determining the character set to use

my delphi 2009 app has a basic translation system that uses GNUGetText. i had used some win API calls to prepare the fonts. i thought it was working correctly until recently when someone from Malta ...

Help with strange Delphi 5 IDE problems

Ok, I m going nuts here. For the last (almost) four years, I ve been putting up with some extremely bad behavior from my Delphi 5 IDE. Problems include: Seemingly random errors in coride50.bpl ...

How to write a Remote DataModule to run on a linux server?

i would like to know if there are any solution to do this. Does anyone? The big picture: I want to access data over the web, using my delphi thin clients. But i´would like to keep my server/service ...

How convert string to integer in Oxygene

In Delphi, there is a function StrToInt() that converts a string to an integer value; there is also IntToStr(), which does the reverse. These functions doesn t appear to be part of Oxygene, and I can ...

Quick padding of a string in Delphi

I was trying to speed up a certain routine in an application, and my profiler, AQTime, identified one method in particular as a bottleneck. The method has been with us for years, and is part of a "...

热门标签