Well, that other error message isn't really an "error" per se, it's more of a
warning. So there is no command line that you are going to want to comment
out. There's 2 ways you can handle this, since you are on a newer version of
RBase.
1. In your logon.rmd program, you can put the following 2 lines at the top
of the program. This will suppress all error messages of any kind from
showing up. Unless you want other types of error messages to come to the
screen
-- in that case do #2.
SET MESSAGES OFF
SET ERROR MESSAGES OFF
2. Put the following line in your logon.rmd. This turns off JUST the "<
warning> no rows..." message that you're seeing, and would allow other error
messages to display.
SET ERROR MESSAGE 2059 OFF
Karen
> OK. Thank you so much. The 2 hyphens worked, it fixed the login error. One
> of my error messages is fixed now.
>
> In the case of my other error message how do I fix that. The second error
> message Iām getting is when I enter info in a file and then exit the file it
> says ā<Warning> No rows exist or satisfy the specified clause. (2059)ā
>
>
>