Videos

  • CFTurbine Download options
  • Create a simple application with a single resource (for e.g. USERS)
    Watch video
  • Reverse engineer (modify existing) model to regenerate code files.
    Watch video
  • Creating an application that handles foreign key relations (e.g. USERS and ROLES to handle one-to-many relation)
    USERS (id (pk), role_id(fk), username, passwd)
    ROLES (id (pk), role_name, role_descr)
    Watch Video
  • Creating application with complex SQL relations (e.g. USERS, ROLES and USERS_ROLES to handle many-to-many relations)
    USERS (id (pk), username, passwd)
    ROLES (id (pk), role_name, role_descr)
    USER_ROLES (user_id (fk), role_id(fk))
    (Link for video coming soon)
  • Example of RESTful results in JSON and XML format.
    Watch video