asked on
ASKER
ASKER
ASKER
ASKER
Kernel and system programming is the process of creating the software necessary for a computer or device to function and operate other programs. Some operating systems (such as Microsoft Windows) are proprietary, but others, such as the various Linux distributions, are open source.
TRUSTED BY
INSERT INTO Items ( ItemCode, ItemName, Price) VALUES (112, 'Soap', 2.54)
should work regardless of the database. That's what the ODBC is for. But incase you have to send the single quote itself to the backend, ( like "David's Book" to be updated in one of the fields ) then it's a bit different. You should probably write a wrapper class around ODBC APIs and handle the single quote separately.
But for all normal insert/ updates the single quote will work.