Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
287
need to connect the ultraCalendarInfo to sybase
posted

 we are using sybase as the database in our windows application...

now we have to perform ADD/Update/delete on appointments/Owners/Notes and it is required to store these objects in database, please suggest the best way of achieving this....

also please suggest some link for the c# code help to perform these Add/Update/Delete on appointments/Owners/Notes...

One more quick question - I got some code @ http://help.infragistics.com/Help/NetAdvantage/NET/2007.3/CLR2.0/html/Infragistics2.Win.UltraWinSchedule.v7.3~Infragistics.Win.UltraWinSchedule.OwnersDataBinding.html 

but not sure what is the "this.scheduleData" representing.... And wat is significance of DataMember in that code and is it required to assign some value to it ??? - As we are already assigning DataSource, is that not enough...

 --Sumit

Parents
No Data
Reply
  • 69832
    Offline posted

    The proprietary nature of the database you are using is not relevant to the WInSchedule data binding layer; it only communicates with an IBindingList interface implementor. Typically one uses a BindingSource, OleDb, etc. to create a DataSet, then sets the DataSource/DataMember properties on the UltraCalendarInfo.DataBindingForAppointments. I think you need to get the Sybase .NET Data Provider, which provides a communication layer between the database and the .NET runtime.

    "this.scheduleData", in the context of that code sample, is an instance of the System.Data.DataSet class.

Children
No Data