Search found 1 match
- 18.08.2010, 14:43
- Forum: MySQL
- Topic: Decimal field
- Replies: 1
- Views: 1200
Decimal field
I have a table with decimal field in MySQL database. create table Products( Id int not null primary key, ProductName varchar(100) not null, Price decimal(15,2) ); MySQL server version is 5.0.32. I use Delphi7 and in the ZTable1 the type of the field Price is TFloatField. Can I write a proper value o...