Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> isql viewer
Anyone using the isql Viewer open source tool to connect to oracle 9 or
10?
isql viewer does not seem to like the backslash in the insert code below, giving the following error.
SQLException :: (ORA-00911: invalid character, sqlcode=911, sqlstate=42000)
Can I resolve this problem in isql viewer without changeing the sql? If I have tried the isql support forum, but there has been no response.
I do not get this error if I use oracle's own SQL Worksheet
DELETE FROM PRINTER_TYPE_PARAMETERS WHERE PRINTER_TYPE = 'JES_DUPLEX';
INSERT INTO PRINTER_TYPE_PARAMETERS (
PRINTER_TYPE,
PARAMETER_NAME, PARAMETER_TYPE, PARAMETER_DESCRIPTION,
10,
NULL,
'Y'
);
COMMIT; Received on Mon Dec 11 2006 - 06:08:04 CST