@ Wild_Pointer
thanks a million - it works!!!!!!!!!!!!!!!
Search found 13 matches
- 04.01.2010, 20:22
- Forum: 6.6 - stable
- Topic: Postgres 8.4 and Decimal
- Replies: 30
- Views: 3007
- 04.01.2010, 15:30
- Forum: 6.6 - stable
- Topic: Postgres 8.4 and Decimal
- Replies: 30
- Views: 3007
- 04.01.2010, 12:58
- Forum: 6.6 - stable
- Topic: Postgres 8.4 and Decimal
- Replies: 30
- Views: 3007
- 31.12.2009, 17:40
- Forum: 6.6 - stable
- Topic: Postgres 8.4 and Decimal
- Replies: 30
- Views: 3007
- 31.12.2009, 14:36
- Forum: 6.6 - stable
- Topic: Postgres 8.4 and Decimal
- Replies: 30
- Views: 3007
- 31.12.2009, 14:18
- Forum: 6.6 - stable
- Topic: Postgres 8.4 and Decimal
- Replies: 30
- Views: 3007
- 31.12.2009, 14:08
- Forum: 6.6 - stable
- Topic: Postgres 8.4 and Decimal
- Replies: 30
- Views: 3007
- 31.12.2009, 13:54
- Forum: 6.6 - stable
- Topic: Postgres 8.4 and Decimal
- Replies: 30
- Views: 3007
- 31.12.2009, 13:46
- Forum: 6.6 - stable
- Topic: Postgres 8.4 and Decimal
- Replies: 30
- Views: 3007
- 31.12.2009, 13:36
- Forum: 6.6 - stable
- Topic: Postgres 8.4 and Decimal
- Replies: 30
- Views: 3007
- 30.12.2009, 03:16
- Forum: 6.6 - stable
- Topic: Postgres 8.4 and Decimal
- Replies: 30
- Views: 3007
Hello, this is the full create. It´s the same for all Numeric Fields. ----------------------------------------------------------------------- EXAMPLE: preis_01_t character varying(40), // Tip/Hint preis_01_1 numeric(7,2), // Price 1 - 9.50 - in the Grid: 950 preis_01_2 numeric(7,2), // Price 2 preis...
- 29.12.2009, 05:08
- Forum: 6.6 - stable
- Topic: Postgres 8.4 and Decimal
- Replies: 30
- Views: 3007
Postgres 8.4 and Decimal
Hello,
I read in a DBGrid:
ZEOS: ZQuery1.SQL.Add('SELECT * FROM test.preise');
Decimal(9.50) comes 950 with Format('0,00') comes 950,00
when i use
LAZARUS OWN: SQLQuery1.SQL.Add('SELECT * FROM test.preise');
Decimal(9.50) comes 9,5 Thats OK!
PGAdmin shows 9.5 Thats OK!
What is wrong with ZEOS?
I read in a DBGrid:
ZEOS: ZQuery1.SQL.Add('SELECT * FROM test.preise');
Decimal(9.50) comes 950 with Format('0,00') comes 950,00
when i use
LAZARUS OWN: SQLQuery1.SQL.Add('SELECT * FROM test.preise');
Decimal(9.50) comes 9,5 Thats OK!
PGAdmin shows 9.5 Thats OK!
What is wrong with ZEOS?
- 23.12.2009, 03:46
- Forum: 6.6 - stable
- Topic: TQuery and Filedsize
- Replies: 0
- Views: 461
TQuery and Filedsize
Hello, i have a postgres database with field size VARCHAR(32768) in it... if i read from this field with zeosdbo my progy crash... if i change size of this field to size VARCHAR(2048), it's all ok... i'm compiling with Lazarus 0.9.28.2 r22279 FPC 2.2.4 i386-win32-win32/win64 zeosdbo is 6.6.5-stable ...