Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Binding Woes.....
Message
General information
Forum:
ASP.NET
Category:
The Mere Mortals .NET Framework
Miscellaneous
Thread ID:
00904176
Message ID:
00904564
Views:
17
In addition to what Jason said, it looks like you are specifying a table name in the binding:
ClientBusiness.clients.ClientName
But you have not set the TableName property in the business object. This is typically done in the constructor:


/// 
/// Main Stub that sets the Business Object Up
///

public ClientBusiness()
{
this.TableName = "clients";
}


The business object's TableName property specifies the default Table Name in the business objects associated DataSet (which is not necessarily the same as the table name on the back end).

Regards,
Kevin McNeish
Eight-Time .NET MVP
VFP and iOS Author, Speaker & Trainer
Oak Leaf Enterprises, Inc.
Chief Architect, MM Framework
http://www.oakleafsd.com
Previous
Reply
Map
View

Click here to load this message in the networking platform