Prev Next Up Title Contents Index

Tietokantataulun lisääminen

Yhdistetäänpä tietokantataulu edelliseen esimerkkiin.

1.
Ota nappula pois.
2.
Nimeä lomake Aapinen ja otsikoksi WinAapinen
3.
Talleta nimelle: unit: aapinen.pas ja projekti: waapi.dpr
4.
Lisää seuraavat komponentit:
		Query:
		  Name = QueryAapinen
		  SQL.Strings = 'select * from waapi'
		  Active = True
		
		DataSource:
		  Name = DataSourceAapinen 
		  DataSet = QueryAapinen
		
		DBEdit:
		  Name = DBEditSana
		  Width = ... iso ...
		  CharCase = ecUpperCase
		  Color = clYellow
		  DataField = Sana
		  DataSource = DataSourceAapinen
		  Font.Height = ... iso ...
		  Font.Name = 'Arial'
		  Font.Style = fsBold


Prev Next Up Title Contents Index