Board index » delphi » Q: How to use ftBytes as TParam for a TQuery
Scott Maso
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Q: How to use ftBytes as TParam for a TQueryI've created a TQuery for SQL Server with the following SQL statement : Insert Into KEY_TEST I've declared TParam :PKEY as string. The code insert code then does this: qryUpdate.ParamByName('PKEY').AsString := lcKey; This all works fine except when lcKey contains a character higher than 0x7F. Any ideas on how to use ftBytes with parameterized queries? Thanks in advance, Scott Mason |