%3 ::xo::db::postgresql ::xo::db::postgresql get_all_package_functions map_datatype nextval select ::xo::db::SQL ::xo::db::SQL datatype_constraint ::xo::db::postgresql->::xo::db::SQL ::xo::db::oracle ::xo::db::oracle ::xo::db::oracle->::xo::db::SQL ::xotcl::Object ::xotcl::Object ::xo::db::SQL->::xotcl::Object ::xo::db::DBI-postgresql ::xo::db::DBI-postgresql ::xo::db::DBI-postgresql->::xo::db::postgresql ::xo::db::DBI ::xo::db::DBI ::xo::db::DBI-postgresql->::xo::db::DBI ::xo::db::DB-postgresql ::xo::db::DB-postgresql 0or1row 1row dml generate_psql get_value insert-view-operation list list_of_lists row_lock ::xo::db::DB-postgresql->::xo::db::postgresql ::xo::db::DB ::xo::db::DB ::xo::db::DB-postgresql->::xo::db::DB

Class ::xo::db::postgresql

::xo::db::postgresql[i] create ...

Class Relations

  • class: ::xotcl::Class[i]
  • superclass: ::xo::db::SQL[i]
  • subclass: ::xo::db::DBI-postgresql[i], ::xo::db::DB-postgresql[i]
::xotcl::Class create ::xo::db::postgresql \
     -superclass ::xo::db::SQL

Methods (to be applied on instances)

  • get_all_package_functions (scripted)

     <instance of xo::db::postgresql[i]> get_all_package_functions

    Partial Call Graph (max 5 caller/called nodes):
    %3 test_xotcl-core xotcl-core (test ) xo::db::postgresql instproc get_all_package_functions xo::db::postgresql instproc get_all_package_functions test_xotcl-core->xo::db::postgresql instproc get_all_package_functions test_xotcl_core_tutorial_2 xotcl_core_tutorial_2 (test ) test_xotcl_core_tutorial_2->xo::db::postgresql instproc get_all_package_functions

    Testcases:
    xotcl_core_tutorial_2, xotcl-core
    #
    # Load definitions in one step from function args; only for
    # those definitions where we do not have function args, we parse
    # the function arg aliases.
    #
    set definitions [::xo::dc list_of_lists get_all_package_functions0 {
      select
      args.function,
      args.arg_name,
      args.arg_default
      from acs_function_args args
      order by function, arg_seq
    }]
    set last_function ""
    set function_args {}
    foreach definition $definitions {
      lassign $definition function arg_name default
      if {$last_function ne "" && $last_function ne $function} {
        set ::xo::db::fnargs($last_function$function_args
        #puts stderr "$last_function [list $function_args]"
        set function_args {}
      }
      lappend function_args [list $arg_name $default]
      set last_function $function
    }
    set ::xo::db::fnargs($last_function$function_args
    #puts stderr "$last_function [list $function_args]"
    ns_log notice "loaded [array size ::xo::db::fnargs] definitions from function args"
    #ns_log notice "... [lsort [array names ::xo::db::fnargs *__*]]"
    
    #
    # Get all package functions (package name, object name) from PostgreSQL
    # system catalogs.
    #
    return [::xo::dc list_of_lists [self proc] {
      select distinct
      upper(substring(proname from 0 for position('__' in proname))) as package_name,
      upper(substring(proname from position('__' in proname)+2)) as object_name
      from pg_proc
      where strpos(proname,'__') > 1
    }]
  • map_datatype (scripted)

     <instance of xo::db::postgresql[i]> map_datatype

    Partial Call Graph (max 5 caller/called nodes):
    %3 test_xotcl-core xotcl-core (test ) xo::db::postgresql instproc map_datatype xo::db::postgresql instproc map_datatype test_xotcl-core->xo::db::postgresql instproc map_datatype test_xotcl_core_tutorial_2 xotcl_core_tutorial_2 (test ) test_xotcl_core_tutorial_2->xo::db::postgresql instproc map_datatype

    Testcases:
    xotcl_core_tutorial_2, xotcl-core
    switch -- $type {
      string    { set type text }
      long_text { set type text }
      date      { set type "timestamp with time zone" }
      ltree     { set type [expr {[::xo::dc has_ltree] ? "ltree" : "text" }] }
      default   { return [next] }
    }
    return $type
  • nextval (scripted)

     <instance of xo::db::postgresql[i]> nextval

    Partial Call Graph (max 5 caller/called nodes):
    %3 test_test_cr_items test_cr_items (test xotcl-core) xo::db::postgresql instproc nextval xo::db::postgresql instproc nextval test_test_cr_items->xo::db::postgresql instproc nextval test_xotcl-core xotcl-core (test ) test_xotcl-core->xo::db::postgresql instproc nextval test_xotcl_core_tutorial_4 xotcl_core_tutorial_4 (test ) test_xotcl_core_tutorial_4->xo::db::postgresql instproc nextval

    Testcases:
    xotcl_core_tutorial_4, xotcl-core, test_cr_items
    if {![info exists ::db::sequences]} {
      ns_log notice "-- creating per thread sequence table"
      foreach s [::xo::dc list relnames "select relname from pg_class where relkind = 'S'"] {
        set ::db::sequences($s) 1
      }
    }
    if {[info exists ::db::sequences(t_$sequence)]} {
      #ns_log notice "-- found t_$sequence"
      set sequenceName t_$sequence
      set nextval [::xo::dc get_value nextval "select nextval(:sequenceName)"]
    } elseif {[info exists ::db::sequences($sequence)]} {
      #ns_log notice "-- found $sequence"
      set sequenceName $sequence
      set nextval [::xo::dc get_value nextval "select nextval(:sequenceName)"]
    } elseif { [::xo::dc 0or1row nextval_sequence {
      select nextval(:sequence) as nextval
      where (select relkind
             from pg_class
             where relname = :sequence) = 'S'
    }]} {
      #
      # We do not have an according sequence-table. Use the system catalog to check
      # for the sequence
      #
      # ... the query sets nextval if it succeeds
      #
    } else {
      #
      # finally, there might be a view with a nextval
      #
      ns_log debug "db_nextval: sequence($sequence) is not a real sequence.  Perhaps it uses the view hack."
      set nextval [::xo::dc get_value nextval "select nextval from :sequence"]
    }
    return $nextval
  • select (scripted)

     <instance of xo::db::postgresql[i]> select

    Partial Call Graph (max 5 caller/called nodes):
    %3 test_xotcl-core xotcl-core (test ) xo::db::postgresql instproc select xo::db::postgresql instproc select test_xotcl-core->xo::db::postgresql instproc select test_xotcl_core_tutorial_2 xotcl_core_tutorial_2 (test ) test_xotcl_core_tutorial_2->xo::db::postgresql instproc select

    Testcases:
    xotcl_core_tutorial_2, xotcl-core
    set where_clause  [expr {$where   ne "" ? "WHERE $where" : ""}]
    set offset_clause [expr {$offset  ne "" ? "OFFSET $offset" : ""}]
    set limit_clause  [expr {$limit   ne "" ? "LIMIT $limit" : ""}]
    set order_clause  [expr {$orderby ne "" ? "ORDER BY $orderby" : ""}]
    set group_clause  [expr {$groupby ne "" ? "GROUP BY $groupby" : ""}]
    return "SELECT $vars FROM $from $where_clause $group_clause $order_clause $limit_clause $offset_clause"