mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-08-18 05:09:05 +02:00
* Add Value to TJSIDBCursor
This commit is contained in:
parent
5b3bc69a41
commit
9439a02b76
@ -1187,6 +1187,7 @@ Type
|
|||||||
private
|
private
|
||||||
FDirection: string; external name 'direction';
|
FDirection: string; external name 'direction';
|
||||||
FKey: JSValue; external name 'key';
|
FKey: JSValue; external name 'key';
|
||||||
|
FValue : JSValue; external name 'value';
|
||||||
FPrimaryKey: JSValue; external name 'primaryKey';
|
FPrimaryKey: JSValue; external name 'primaryKey';
|
||||||
FSource: JSValue; external name 'source';
|
FSource: JSValue; external name 'source';
|
||||||
FSourceAsIndex: TJSIDBIndex; external name 'source';
|
FSourceAsIndex: TJSIDBIndex; external name 'source';
|
||||||
@ -1204,6 +1205,7 @@ Type
|
|||||||
property sourceAsStore : TJSIDBObjectStore read FSourceAsStore;
|
property sourceAsStore : TJSIDBObjectStore read FSourceAsStore;
|
||||||
property sourceAsIndex : TJSIDBIndex read FSourceAsIndex;
|
property sourceAsIndex : TJSIDBIndex read FSourceAsIndex;
|
||||||
property key : JSValue read FKey;
|
property key : JSValue read FKey;
|
||||||
|
Property Value : JSValue Read FValue;
|
||||||
property primaryKey : JSValue read FPrimaryKey;
|
property primaryKey : JSValue read FPrimaryKey;
|
||||||
property direction : string read FDirection;
|
property direction : string read FDirection;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user