For example, in order to input a last name of O'CONNOR into
a table you would have to have:
INSERT INTO TABLE1 VALUES ('O''CONNOR')
is there any other way to put this value into the database without
having to add the extra single quote in the name?
For example:
insert into table1 values ( :x );
instead of
insert into table1 values ( 'O''CONNOR' );
you would bind the character string O'CONNOR to :x and execute the insert
then.
Methods vary by language....