Skip to content

Commit 140220f

Browse files
committed
fixed datastoreimplementation examples
1 parent 13ead27 commit 140220f

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

docs/API/DataStoreClass.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ The `.getInfo()` function <!-- REF #DataStoreClass.getInfo().Summary -->returns
467467
On a remote datastore:
468468

469469
```4d
470-
var $remoteDS : cs.DataStore
470+
var $remoteDS : 4D.DataStoreImplementation
471471
var $info; $connectTo : Object
472472
473473
$connectTo:=New object("hostname";"111.222.33.44:8044";"user";"marie";"password";"aaaa")
@@ -1128,7 +1128,7 @@ You can nest several transactions (sub-transactions). Each transaction or sub-tr
11281128
```4d
11291129
var $connect; $status : Object
11301130
var $person : cs.PersonsEntity
1131-
var $ds : cs.DataStore
1131+
var $ds : 4D.DataStoreImplementation
11321132
var $choice : Text
11331133
var $error : Boolean
11341134

versioned_docs/version-19/API/DataStoreClass.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Connection to a remote datastore without user / password:
161161

162162
```4d
163163
var $connectTo : Object
164-
var $remoteDS : cs.DataStore
164+
var $remoteDS : 4D.DataStoreImplementation
165165
$connectTo:=New object("type";"4D Server";"hostname";"192.168.18.11:8044")
166166
$remoteDS:=Open datastore($connectTo;"students")
167167
ALERT("This remote datastore contains "+String($remoteDS.Students.all().length)+" students")
@@ -173,7 +173,7 @@ Connection to a remote datastore with user / password / timeout / tls:
173173

174174
```4d
175175
var $connectTo : Object
176-
var $remoteDS : cs.DataStore
176+
var $remoteDS : 4D.DataStoreImplementation
177177
$connectTo:=New object("type";"4D Server";"hostname";\"192.168.18.11:4443";\
178178
"user";"marie";"password";$pwd;"idleTimeout";70;"tls";True)
179179
$remoteDS:=Open datastore($connectTo;"students")
@@ -387,7 +387,7 @@ The `.getInfo()` function <!-- REF #DataStoreClass.getInfo().Summary -->returns
387387
On a remote datastore:
388388

389389
```4d
390-
var $remoteDS : cs.DataStore
390+
var $remoteDS : 4D.DataStoreImplementation
391391
var $info; $connectTo : Object
392392
393393
$connectTo:=New object("hostname";"111.222.33.44:8044";"user";"marie";"password";"aaaa")
@@ -726,7 +726,7 @@ You can nest several transactions (sub-transactions). Each transaction or sub-tr
726726
```4d
727727
var $connect; $status : Object
728728
var $person : cs.PersonsEntity
729-
var $ds : cs.DataStore
729+
var $ds : 4D.DataStoreImplementation
730730
var $choice : Text
731731
var $error : Boolean
732732

versioned_docs/version-20-R8/API/DataStoreClass.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ The `.getInfo()` function <!-- REF #DataStoreClass.getInfo().Summary -->returns
467467
On a remote datastore:
468468

469469
```4d
470-
var $remoteDS : cs.DataStore
470+
var $remoteDS : 4D.DataStoreImplementation
471471
var $info; $connectTo : Object
472472
473473
$connectTo:=New object("hostname";"111.222.33.44:8044";"user";"marie";"password";"aaaa")
@@ -1128,7 +1128,7 @@ You can nest several transactions (sub-transactions). Each transaction or sub-tr
11281128
```4d
11291129
var $connect; $status : Object
11301130
var $person : cs.PersonsEntity
1131-
var $ds : cs.DataStore
1131+
var $ds : 4D.DataStoreImplementation
11321132
var $choice : Text
11331133
var $error : Boolean
11341134

versioned_docs/version-20-R9/API/DataStoreClass.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ The `.getInfo()` function <!-- REF #DataStoreClass.getInfo().Summary -->returns
467467
On a remote datastore:
468468

469469
```4d
470-
var $remoteDS : cs.DataStore
470+
var $remoteDS : 4D.DataStoreImplementation
471471
var $info; $connectTo : Object
472472
473473
$connectTo:=New object("hostname";"111.222.33.44:8044";"user";"marie";"password";"aaaa")
@@ -1128,7 +1128,7 @@ You can nest several transactions (sub-transactions). Each transaction or sub-tr
11281128
```4d
11291129
var $connect; $status : Object
11301130
var $person : cs.PersonsEntity
1131-
var $ds : cs.DataStore
1131+
var $ds : 4D.DataStoreImplementation
11321132
var $choice : Text
11331133
var $error : Boolean
11341134

0 commit comments

Comments
 (0)