1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| CREATE DATABASE '..\Data\Base.fdb' page_size 4096 DEFAULT CHARACTER SET ISO8859_1;
SET NAMES ISO8859_1;
create table test (
id int not null primary key,
lib char(20) not null collate FR_FR);
insert into test (id,lib) values (1, 'ça marche');
insert into test (id,lib) values (3, 'uro');
Statement failed, SQLSTATE = 22018
arithmetic exception, numeric overflow, or string truncation
-Cannot transliterate character between character sets
After line 9 in file Base_2.sql
insert into test (id,lib) values (2, 'cur');
Statement failed, SQLSTATE = 22018
arithmetic exception, numeric overflow, or string truncation
-Cannot transliterate character between character sets
After line 10 in file Base_2.sql
select * from test;
ID LIB
============ ====================
1 ça marche
exit;
Appuyez sur une touche pour continuer... |
Partager