%3 ::xotcl::Object ::xotcl::Object ::xo::db::sql::template_demo_note ::xo::db::sql::template_demo_note → del → name → new ::xo::db::sql::template_demo_note->::xotcl::Object

Class ::xo::db::sql::template_demo_note

::xo::db::sql::template_demo_note[i] create ...

Class Relations

  • class: ::xo::db::Class[i]
  • superclass: ::xotcl::Object[i]
::xo::db::Class create ::xo::db::sql::template_demo_note \
     -superclass ::xotcl::Object

Methods (to be applied on the object)

  • del (scripted, public)

     xo::db::sql::template_demo_note[i] del [ -dbn dbn ] \
        -template_demo_note_id template_demo_note_id 

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -template_demo_note_id
    (required)

    Partial Call Graph (max 5 caller/called nodes):
    %3 db_with_handle db_with_handle (public) xo::db::sql::template_demo_note proc del xo::db::sql::template_demo_note proc del xo::db::sql::template_demo_note proc del->db_with_handle

    Testcases:
    No testcase defined.
    #function_args: {TEMPLATE_DEMO_NOTE_ID {}}
    foreach var [list TEMPLATE_DEMO_NOTE_ID]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select template_demo_note__del($_TEMPLATE_DEMO_NOTE_ID) 
        "
    db_with_handle -dbn $dbn db {
      #ns_log notice "--sql=$sql"
      return [ ns_set value [ns_pg_bind 0or1row $db $sql] 0 ]
    }
  • name (scripted, public)

     xo::db::sql::template_demo_note[i] name [ -dbn dbn ] \
        -template_demo_note_id template_demo_note_id 

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -template_demo_note_id
    (required)

    Partial Call Graph (max 5 caller/called nodes):
    %3 db_with_handle db_with_handle (public) xo::db::sql::template_demo_note proc name xo::db::sql::template_demo_note proc name xo::db::sql::template_demo_note proc name->db_with_handle

    Testcases:
    No testcase defined.
    #function_args: {TEMPLATE_DEMO_NOTE_ID {}}
    foreach var [list TEMPLATE_DEMO_NOTE_ID]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select template_demo_note__name($_TEMPLATE_DEMO_NOTE_ID) 
        "
    db_with_handle -dbn $dbn db {
      #ns_log notice "--sql=$sql"
      return [ ns_set value [ns_pg_bind 0or1row $db $sql] 0 ]
    }
  • new (scripted, public)

     xo::db::sql::template_demo_note[i] new [ -dbn dbn ] \
        -template_demo_note_id template_demo_note_id  -title title  \
        -body body  -color color  [ -object_type object_type ] \
        [ -creation_date creation_date ] -creation_user creation_user  \
        -creation_ip creation_ip  -context_id context_id  \
        [ -childof childof ]

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -template_demo_note_id
    (required)
    -title
    (required)
    -body
    (required)
    -color
    (required)
    -object_type
    (defaults to "template_demo_note") (optional)
    -creation_date
    (defaults to "now") (optional)
    -creation_user
    (required)
    -creation_ip
    (required)
    -context_id
    (required)
    -childof
    (optional)

    Partial Call Graph (max 5 caller/called nodes):
    %3 db_with_handle db_with_handle (public) xo::db::sql::template_demo_note proc new xo::db::sql::template_demo_note proc new xo::db::sql::template_demo_note proc new->db_with_handle

    Testcases:
    No testcase defined.
    #function_args: {TEMPLATE_DEMO_NOTE_ID {}} {TITLE {}} {BODY {}} {COLOR {}} {OBJECT_TYPE template_demo_note} {CREATION_DATE now} {CREATION_USER {}} {CREATION_IP {}} {CONTEXT_ID {}}
    foreach var [list TEMPLATE_DEMO_NOTE_ID TITLE BODY COLOR OBJECT_TYPE CREATION_DATE CREATION_USER CREATION_IP CONTEXT_ID]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select template_demo_note__new($_TEMPLATE_DEMO_NOTE_ID$_TITLE$_BODY$_COLOR$_OBJECT_TYPE$_CREATION_DATE$_CREATION_USER$_CREATION_IP$_CONTEXT_ID) 
        "
    db_with_handle -dbn $dbn db {
      #ns_log notice "--sql=$sql"
      return [ ns_set value [ns_pg_bind 0or1row $db $sql] 0 ]
    }