mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 01:38:07 +02:00
* Add largeint (int64) parameter supportby Silvio Clecio (bug ID 35554)
git-svn-id: trunk@42041 -
This commit is contained in:
parent
43da09722c
commit
e958438fc9
@ -1,7 +1,7 @@
|
||||
unit oracleconnection;
|
||||
|
||||
{
|
||||
Copyright (c) 2006-2014 by Joost van der Sluis, FPC contributors
|
||||
Copyright (c) 2006-2019 by Joost van der Sluis, FPC contributors
|
||||
|
||||
Oracle RDBMS connector using the OCI protocol
|
||||
|
||||
@ -358,6 +358,7 @@ begin
|
||||
|
||||
case DataType of
|
||||
ftInteger : AsInteger := PInteger(ParamBuffers[i].buffer)^;
|
||||
ftLargeint : AsLargeInt := PInt64(ParamBuffers[i].buffer)^;
|
||||
ftFloat : AsFloat := PDouble(ParamBuffers[i].buffer)^;
|
||||
ftString : begin
|
||||
SetLength(s,ParamBuffers[i].Len);
|
||||
|
Loading…
Reference in New Issue
Block a user