avianmanagement
2013-08-23, 16:15
In my vfp apps I use two DBCs , one for tables and one for views.
The view DBCc is then built into the exe so that it is on each work station.
I'm currently modifying the lianja import dbc prg to import views as well ss tables
My apps use views only and in Lianja when I import a form I get entries such as
define class cursor1_1ok0wahoz as cursor
** Properties
Top = 20
Left = 10
Height = 447
Width = 91
Alias = "v_daddress"
Database = '..\data\aim_views.dbc'
CursorSource = "v_daddress_4_dcountry_3way"
NoDataOnLoad = .T.
Name = "Cursor1"
enddefine
Can Lianja use two dbcs in an application or do I ned to have teh views imported into the tables DBC ?
If so then I assume I'd have to alter teh code
Database = '..\data\aim_views.dbc'
to
Database = '..\data\aim.dbc'
does one need the '..\data\
part of that line in actual fact ?
The view DBCc is then built into the exe so that it is on each work station.
I'm currently modifying the lianja import dbc prg to import views as well ss tables
My apps use views only and in Lianja when I import a form I get entries such as
define class cursor1_1ok0wahoz as cursor
** Properties
Top = 20
Left = 10
Height = 447
Width = 91
Alias = "v_daddress"
Database = '..\data\aim_views.dbc'
CursorSource = "v_daddress_4_dcountry_3way"
NoDataOnLoad = .T.
Name = "Cursor1"
enddefine
Can Lianja use two dbcs in an application or do I ned to have teh views imported into the tables DBC ?
If so then I assume I'd have to alter teh code
Database = '..\data\aim_views.dbc'
to
Database = '..\data\aim.dbc'
does one need the '..\data\
part of that line in actual fact ?