Search found 371 matches
- Thu Feb 22, 2024 10:29 pm
- Forum: Discussion
- Topic: Folders for scripts and backups
- Replies: 2
- Views: 11229
Re: Folders for scripts and backups
That seems reasonable. I'll add it to my 'To Do' list.
- Fri Feb 02, 2024 10:56 pm
- Forum: Rel's "DBrowser": The Rel Graphical User Interface
- Topic: Rel interface: Having to scroll to the bottom to add a tuple
- Replies: 4
- Views: 21638
Re: Rel interface: Having to scroll to the bottom to add a tuple
That seems reasonable. I'll add it to my to-do list.
- Fri Oct 07, 2022 2:10 pm
- Forum: Announcements
- Topic: Rel version 3.016 now available!
- Replies: 0
- Views: 32159
Rel version 3.016 now available!
This release of Rel , an implementation of Date & Darwen's Tutorial D database language, fixes a bug that prevented the Rel DBMS 'BACKUP' command working and thus prevented correct operation of DBrowser's backup facility, and changes the schema of the sys.Version relvar. Fix: Reorganisation of t...
- Sun Oct 02, 2022 8:40 pm
- Forum: Announcements
- Topic: Rel version 3.015 now available!
- Replies: 0
- Views: 23188
Rel version 3.015 now available!
This release of Rel , an implementation of Date & Darwen's Tutorial D database language, upgrades some dependencies, adds more detailed logging to the DBrowser startup, fixes some issues, and provides a Maven-based build for Rel developers. The following enhancements have been made: Enhancement:...
- Wed Sep 25, 2019 8:28 pm
- Forum: Announcements
- Topic: Rel version 3.014 now available!
- Replies: 0
- Views: 40764
Rel version 3.014 now available!
This release of Rel , an implementation of Date & Darwen's Tutorial D database language, improves the user interface, adds Infinity and NaN (Not a Number) to the recognised RATIONAL literals, and fixes some bugs. The following enhancements have been made: - DBrowser: The command-line now provide...
- Sat Sep 21, 2019 12:20 pm
- Forum: Report a Bug
- Topic: Spurious sytax error with INSERT
- Replies: 3
- Views: 37897
Re: Spurious sytax error with INSERT
I see the problem -- it's with the mechanism in the DBrowser front-end that tries to detect whether you've entered an expression or one or more statements. It's surprisingly complex and it can be fooled. In this case, it's being fooled into thinking you've entered an expression by the slashes '//', ...
- Sat Sep 21, 2019 11:43 am
- Forum: Report a Bug
- Topic: Spurious sytax error with INSERT
- Replies: 3
- Views: 37897
Re: Spurious sytax error with INSERT
I'll do some tests on this to see if I can find a workaround. I know EXTEND can expose a grammar ambiguity (I don't recall the specifics, but I know it does) and this is likely related to it.
- Sat Sep 21, 2019 11:42 am
- Forum: Report a Bug
- Topic: insert sometimes doesn't insert anything
- Replies: 1
- Views: 15749
Re: insert sometimes doesn't insert anything
Sorry for the slow response - I've been on holiday. This sounds like a bug in transaction handling; maybe the INSERT has written in a "write" transaction but is being read in a "read" transaction whilst the "write" transaction is still open and uncommitted. I've examine...
- Sun Jan 27, 2019 8:56 pm
- Forum: Report a Bug
- Topic: RENAME in V3.013 incompatible with previous versions
- Replies: 2
- Views: 18659
Re: RENAME in V3.013 incompatible with previous versions
It's an effect of making RENAME parallel. An expression like REL {TUP {X1 1}} RENAME {SUFFIX '1' AS '', X AS Y} now fails because for a parallel rename to work, the <old_name> of each <old_name> AS <new_name> pair must exist in the tuple/relation operand expression. By the way, apologies for the slo...
- Sun Dec 16, 2018 9:59 pm
- Forum: Language Issues
- Topic: IMPLIES via IF THEN
- Replies: 1
- Views: 29934
Re: IMPLIES via IF THEN
The trailing END IF, END CASE, or just END is needed to disambiguate the end of the conditional subexpression from the remainder of the expression.
- Sun Dec 16, 2018 9:57 pm
- Forum: Language Issues
- Topic: Why is NOT IN not interpreted
- Replies: 1
- Views: 14410
Re: Why is NOT IN not interpreted
I suppose it could be added as a Rel-specific extension, but I don't recall Tutorial D specifying NOT IN or equivalent.
- Fri Dec 07, 2018 2:52 pm
- Forum: Announcements
- Topic: Rel version 3.013 now available!
- Replies: 0
- Views: 36126
Rel version 3.013 now available!
This release of Rel , an implementation of Date & Darwen's Tutorial D database language, improves the user interface, fixes some bugs, adds support for outer joins, and significantly reduces the size of the Rel distribution whilst improving startup speed. The following enhancements have been mad...
- Thu Nov 29, 2018 10:07 pm
- Forum: Report a Bug
- Topic: WITH not available in a WHERE condition
- Replies: 4
- Views: 26056
Re: WITH not available in a WHERE condition
I've looked into this and have reminded myself why it works the way it does. There is a parsing ambiguity when using WITH (and similarly, TUPLE FROM, FROM, and TCLOSE) within WHERE, which I'll illustrate with an example. Given the following expression: WHERE WITH (p := x * 3): p > 2 AND x = 7 Does A...
- Tue Nov 27, 2018 10:05 pm
- Forum: Rel's "DBrowser": The Rel Graphical User Interface
- Topic: Scroll bar disappears in Rel mode
- Replies: 7
- Views: 45826
Re: Scroll bar disappears in Rel mode
I have fixed it.
The fix will be in the forthcoming update.
The fix will be in the forthcoming update.
- Tue Nov 27, 2018 9:45 pm
- Forum: Rel's "DBrowser": The Rel Graphical User Interface
- Topic: Scroll bar disappears in Rel mode
- Replies: 7
- Views: 45826
Re: Scroll bar disappears in Rel mode
I've found a problem with resizing the Rel window when in "Rel" mode and using "Edit" to edit relvar contents. Whilst I haven't been able to precisely replicate the scrollbars disappearing, I suspect that problem and the resizing problem are related.
I'm working on fixing it.
I'm working on fixing it.