[PIPython] Database
Angelo Galleja
angelo.galleja
Ven 11 Mar 2005 15:46:52 CET
Andrea Giammarchi ha scritto:
> Questo invece non sarebbe consentito in MySQL, dove se ho un int
> unsigned ed inserisco una stringa il db mi dara' un errore ...
> insomma, intendevo questo :D
ma quando mai?
CREATE TABLE `pr_int` (
`n` INT UNSIGNED NOT NULL
);
INSERT INTO `pr_int` ( `n` )
VALUES (
'd'
);
mysql> SELECT * FROM pr_int;
+---+
| n |
+---+
| 0 |
+---+
1 row in set (0.00 sec)
fa il casting automatico non da' errore ...
buona giornata
Angelo
More information about the Python
mailing list