Not all field is visible?

Forum related to MySQL

Moderators: gto, cipto_kh, EgonHugeist

Post Reply
ozxbi
Fresh Boarder
Fresh Boarder
Posts: 3
Joined: 19.04.2009, 23:44
Location: Cristuru Secuiesc
Contact:

Not all field is visible?

Post by ozxbi »

Using Delphi7, Zeos components.

-Datasource, ZConnection, ZQuery

I have created a database
And in a database I table, with 1 row;

Here is the code;

CREATE TABLE TABLENAME (
UKOD INT(4) ZEROFILL NOT NULL,
UNEV VARCHAR(50) NOT NULL,
UNORCA VARCHAR(20) NOT NULL,
UCIM VARCHAR(60) NOT NULL,
UMEGYE VARCHAR(15) NOT NULL,
UORSZAG VARCHAR(30) NOT NULL,
UDT INT(6),
UDO INT(6),
UWORK INT(1) NOT NULL,
UCNUM INT(4) NOT NULL,
UCDATE DATE NOT NULL,
PRIMARY KEY (UKOD)
);

And than:
INSERT INTO UGYFELEK
VALUES(2,'something','something','something','Harghita','Romania',0,0,1,15,'08/02/03');

I'm used dbGrid

when I want to use 'Select * from TABLENAME'
then I can see only the first 5 fields on my dbgrid.

Where should be the problem?
User avatar
mdaems
Zeos Project Manager
Zeos Project Manager
Posts: 2766
Joined: 20.09.2005, 15:28
Location: Brussels, Belgium
Contact:

Post by mdaems »

And the grid is not scrollable? Aren't the other columns just hidden?

If the columns are really not there, please attach your zipped project, including a table creation and insert script to a bug report at http://zeosbugs.firmos.at/.

Mark
Image
Post Reply