database field

  1. LawnyToast

    Resolved Adding Field to an existing Database Table - Procedural Errors

    This is my first time altering one of our existing database tables. My predecessor taught me everything I know, and he is no longer working with our company. We briefly touched on the altering of existing database tables, and what I took away from that talk was: Every file that references the...
  2. GirdUpYourLoins

    Lookup Fails When Casting Id To An Integer.

    I have the following code which is supposed to for each through a database table and retrieve records based on id: FOR EACH Proj_Mstr WHERE Proj_Mstr.Proj_client_ID = INTEGER(get-value("clientId")) AND Proj_Mstr.Proj_deleted = ? NO-LOCK BREAK BY Proj_Mstr.Proj_sort...
  3. DCraig

    Enum conflicting with DB field name

    Hi All, I've come across a strange issue. I have a simple class i use as an enum called OrderType like so: CLASS Entity.Order.Enums.OrderType: DEFINE PUBLIC STATIC PROPERTY TestOrder AS CHARACTER NO-UNDO INIT "TESTORDER" GET. END CLASS. Which i use in code like so: MESSAGE...
Top