Skip to content
Snippets Groups Projects
Select Git revision
  • 06134b747cbc7aa11da04f56e67e310074463321
  • master default protected
  • 9.0
  • 8.0
  • marcus/wix3
  • nt-tools
  • 7.8
  • 7.6
  • 7.4
  • 7.2
  • 7.0
  • 0.6
  • rosuav/latex-markdown-renderer
  • rxnpatch/rxnpatch
  • marcus/gobject-introspection
  • rxnpatch/8.0
  • rosuav/pre-listening-ports
  • rosuav/async-annotations
  • rosuav/pgsql-ssl
  • rxnpatch/rxnpatch-broken/2023-10-06T094250
  • grubba/fdlib
  • v8.0.2024
  • v8.0.2022
  • v8.0.2020
  • v8.0.2018
  • v8.0.2016
  • v8.0.2014
  • v8.0.2012
  • v8.0.2008
  • v8.0.2006
  • v8.0.2004
  • v8.0.2002
  • v8.0.2000
  • v8.0.1998
  • v8.0.1996
  • v8.0.1994
  • v8.0.1992
  • v8.0.1990
  • v8.0.1988
  • v8.0.1986
  • rxnpatch/clusters/8.0/2025-04-29T124414
41 results

sybase.pike

Blame
  • sybase.pike 2.16 KiB
    /*
     * Sybase driver for the Pike programming language.
     * By Francesco Chemolli <kinkie@roxen.com> 10/12/1999
     *
     * $Id: sybase.pike,v 1.10 2004/04/16 12:12:46 grubba Exp $
     *
     */
    
    #pike __REAL_VERSION__
    
    #if constant(sybase.sybase)
    
    inherit sybase.sybase:mo;
    #define THROW(X) throw(({X+"\n",backtrace()}))
    
    
    /*
     * Deprecated. Use connect(host,db,user,pass) instead.
     */
    void select_db(string db)
    {
      mo::big_query("use "+db);
    }
    
    /*
     * Deprecated. Use an SQL command instead.
     */
    void create_db (string dbname) {
      mo::big_query("create database "+dbname);
    }
    
    /*
     * Deprecated. Use an SQL command instead.
     */
    void drop_db (string dbname) {
      mo::big_query("drop database "+dbname);
    }
    
    void shutdown() {
      catch { //there _will_ be an error. It's just that we don't care about it.
        mo::big_query("shutdown");
      };
    }
    
    string server_info () {
      return "sybase/10.X or 11.X";
    }
    
    /*
     * Unimplemented. Anyone knows Transact-SQL well enough?
     * maybe we could use the connection properties otherwise (CS_HOSTNAME)
     */
    string host_info() {
      return "unknown";
    }
    
    /*
     * Unimplemented. Anyone knows Transact-SQL well enough?
     */
    array(string) list_dbs(string|void wild) {
      THROW("Unsupported");
    }
    
    /*
     * Unimplemented. PLEASE tell me somebody knows how to do this.
     * There MUST be some system stored procedure...
     */
    array(string) list_tables(string|void wild) {
      THROW("Unsupported");
    }