hi, i've got following problem:
if i insert a datarow into one of my tables, everything works well. (no errors) but when i select this row, the wrong data has been inserted into my primary key field.
insert into my_table (prim, a, b) values ('1234','a1','b1');
OK
select * from my_table;
prim =3627
a = a1
b = b1
any idea whats wrong here?
thanks jo
if i insert a datarow into one of my tables, everything works well. (no errors) but when i select this row, the wrong data has been inserted into my primary key field.
insert into my_table (prim, a, b) values ('1234','a1','b1');
OK
select * from my_table;
prim =3627
a = a1
b = b1
any idea whats wrong here?
thanks jo