Поэтому я хотел преобразовать запрос msyql в sqlite, где в нем есть изображения в шестнадцатеричном коде, когда я выполняю тот же запрос в браузере sqlite, он выдает ошибку, как правильно это сделать.
Result: hex literal too big: 0x73616666726f6e2e6a7067
At line 1:
INSERT INTO `test` (`id`, `yeild`, `image`, `city`, `info`, `fertilizer`) VALUES
(9, 'Wheat', 0x77686561742e6a7067, 'Bangalore', 'Weather that is comfortable for humans is also good for wheat. Wheat needs 12\r\nto 15 inches (31 to 38 centimetres) of water to produce a')
CREATE TABLE IF NOT EXISTS `test` (
`id` int(11) NOT NULL PRIMARY KEY,
`yeild` varchar(40) NOT NULL,
`image` blob NOT NULL,
`city` varchar(50) NOT NULL,
`info` varchar(60000) NOT NULL,
`fertilizer` varchar(5000) NOT NULL);