Master-Detail.
Detail dataset always locates on 8th record, if RecordCount >= 8.
if RecordCount < 8, dataset locates 1st (OK).
Can it work like 6.5.1 and standard dataset: always automaticaly locate 1st ?
Search found 2 matches
- 18.06.2010, 10:09
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Master-Detail, detail dataset always locates on 8th record
- Replies: 1
- Views: 1609
- 18.06.2010, 09:09
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: SortedType vs LIMIT in MySQL
- Replies: 1
- Views: 1629
SortedType vs LIMIT in MySQL
tab: Val 1 2 3 4 5 6 7 8 9 10 Query: SELECT Val FROM tab ORDER BY Val DESC LIMIT 5,5 Result in 6.5.1(good!): Val 5 4 3 2 1 Result in 6.6.6( wrong! ): Val 10 9 8 7 6 New property SortedType => 1.Transofrm query: SELECT Val FROM tab ORDER BY Val LIMIT 5,5 ( DESC is absent) 2. SortedType = stDescending...