Actions
Bug #577
openClose n on Random file causes an Internal error.
Start date:
11/17/2020
Due date:
% Done:
0%
Estimated time:
1:00 h
Affected version:
Description
Example:
Open Random 1,"test.dat"
Field 1,20 As FirstName$, 20 As LastName$, 10 As PhoneNumber$
FirstName$="Barney" : LastName$="Rubble" : PhoneNumber$="7891239876"
Put 1,1
FirstName$="Fred" : LastName$="Flintstone" : PhoneNumber$="7891234567"
Put 1,2
Close 1
The Close 1 causes an Internal Error.
(This was with the first Beta 1 release.)
Updated by Brian Flanagan over 3 years ago
- Affected version changed from Beta 1 to 1.0.0 (B7)
Re-tested in 1.0.0 (B7). Close N still fails.
For this source:
Open Random 1,"application:test.dat" // This fails.
// Also fails with "application:test.dat"
Field 1,20 As FirstName$, 20 As LastName$, 10 As PhoneNumber$
FirstName$="Barney" : LastName$="Rubble" : PhoneNumber$="7891239876"
Put 1,1
FirstName$="Fred" : LastName$="Flintstone" : PhoneNumber$="7891234567"
Put 1,2
Close 1 // It fails here.
Here are the console errors:
Filesystem: application, response: true
rfilesystem.js:88 Filesystem: http, response: true
rfilesystem.js:88 Filesystem: https, response: true
raoz.js:1060 source is not defined
raoz.js:1061 ReferenceError: source is not defined
at Filesystem_Application.write (rfilesystem_application.js:473)
at Filesystem.saveFile (rfilesystem.js:252)
at v1_0_filesystem.close (v1_0_filesystem.js:635)
at AOZ.runBlocks (raoz.js:897)
at doUpdate (raoz.js:443)
raoz.js:495 Internal error
at line: 8, column: 1 in file Bug577.aoz.
Updated by Brian Flanagan over 3 years ago
Please ignore the comment on the Open statement. That's working now, but the Close still fails.
Updated by Brian Flanagan over 3 years ago
- Assignee set to Francois Lionet
- Priority changed from Normal to High
Updated by Brian Flanagan about 3 years ago
- Status changed from New to Resolved
- Target version set to 1.0.0 (B10) u16
Re-tested in 1.0.0 (B10) u16
It's working now!
It's still saving to the web browser local storage vs. the application's resources/filesystem/application folder, but it is working.
No more internal errors.
Random Read is also working! :-)
Actions