Discussion:
BCDemo's ??
(too old to reply)
Barry
2007-07-27 10:31:24 UTC
Permalink
Both from this BCB Help on TTable, and from the QuSoft Tut for Quick
Report 3, they suggest creating a table, using either DBDemos or BCDemos
as the DatabseName, and each time my BCB5 installation fails to find
such a Database.

I have no experience in Database programming, I am just trying to get
aquainted with Quick Report and TTable.

I would imagine one can use TTable for non database data, like from text
file etc, but each time I select something under TableName it insists on
asking me for a Username and Password.....what is that about..

Completely lost here....

Barry

++++++++++++++++++++++++++++++++++++++++++++++++++++++++
DevGuide: Developing database applications
Building an example master/detail form

Topic groups

The following steps create a simple form in which a user can scroll
through customer records and display all orders for the current
customer. The master table is the CustomersTable table, and the detail
table is OrdersTable.

1 Place two TTable and two TDataSource components in a data module.
2 Set the properties of the first TTable component as follows:

DatabaseName: BCDEMOS
TableName: CUSTOMER
Name: CustomersTable

3 Set the properties of the second TTable component as follows:

DatabaseName: BCDEMOS
TableName: ORDERS
Name: OrdersTable

4 Set the properties of the first TDataSource component as follows:

Name: CustSource
DataSet: CustomersTable
Barry
2007-07-27 11:15:50 UTC
Permalink
Post by Barry
Both from this BCB Help on TTable, and from the QuSoft Tut for Quick
Report 3, they suggest creating a table, using either DBDemos or BCDemos
as the DatabseName, and each time my BCB5 installation fails to find
such a Database.
Could this be due to me having BCB5 Standard, and not Pro?

Loading...