Beispiel #1
0
 // Function from file: dbcore.dm
 public DBConnection(dynamic dbi_handler = null, dynamic username = null, dynamic password_handler = null, dynamic cursor_handler = null)
 {
     this.dbi            = dbi_handler;
     this.user           = username;
     this.password       = password_handler;
     this.default_cursor = cursor_handler;
     this._db_con        = DB13.new_con();
     return;
 }
Beispiel #2
0
 public static string quote(DB13_CONNECTION c, string str)
 {
     Logger.DebugMinor("db->quote");
     return("");
 }
Beispiel #3
0
 public static bool is_connected(DB13_CONNECTION connection)
 {
     Logger.DebugMinor("db->is_connected");
     return(false);
 }
Beispiel #4
0
 public static bool close(DB13_CONNECTION connection)
 {
     Logger.DebugMinor("db->close-c");
     return(false);
 }
Beispiel #5
0
 public static string error_msg(DB13_CONNECTION connection)
 {
     Logger.DebugMinor("db->error_msg-c");
     return("");
 }
Beispiel #6
0
 public static bool execute(DB13_QUERY q, string sql_query, DB13_CONNECTION c, dynamic cursor, dynamic unknown_arg)
 {
     Logger.DebugMinor("db->execute");
     return(false);
 }
Beispiel #7
0
 public static bool connect(DB13_CONNECTION connection, string dbi, string user, string password, dynamic cursor, dynamic unknown_arg)
 {
     Logger.DebugMinor("db->connect");
     return(false);
 }