// Copyright 2019 gf Author(https://github.com/gogf/gf). All Rights Reserved. // // This Source Code Form is subject to the terms of the MIT License. // If a copy of the MIT was not distributed with this file, // You can obtain one at https://github.com/gogf/gf. // package gdb import ( "database/sql" ) // GetMaster acts like function Master but with additional parameter specifying // the schema for the connection. It is defined for internal usage. // Also see Master. func (c *Core) GetMaster(schema ...string) (*sql.DB, error) { return c.getSqlDb(true, schema...) } // GetSlave acts like function Slave but with additional parameter specifying // the schema for the connection. It is defined for internal usage. // Also see Slave. func (c *Core) GetSlave(schema ...string) (*sql.DB, error) { return c.getSqlDb(false, schema...) } // QuoteWord checks given string a word, if true quotes it with security chars of the database // and returns the quoted string; or else return without any change. func (c *Core) QuoteWord(s string) string { charLeft, charRight := c.DB.GetChars() return doQuoteWord(s, charLeft, charRight) } // QuoteString quotes string with quote chars. Strings like: // "user", "user u", "user,user_detail", "user u, user_detail ut", "u.id asc". func (c *Core) QuoteString(s string) string { charLeft, charRight := c.DB.GetChars() return doQuoteString(s, charLeft, charRight) } // QuotePrefixTableName adds prefix string and quotes chars for the table. // It handles table string like: // "user", "user u", // "user,user_detail", // "user u, user_detail ut", // "user as u, user_detail as ut". // // Note that, this will automatically checks the table prefix whether already added, // if true it does nothing to the table name, or else adds the prefix to the table name. func (c *Core) QuotePrefixTableName(table string) string { charLeft, charRight := c.DB.GetChars() return doHandleTableName(table, c.DB.GetPrefix(), charLeft, charRight) } // GetChars returns the security char for current database. // It does nothing in default. func (c *Core) GetChars() (charLeft string, charRight string) { return "", "" } // HandleSqlBeforeCommit handles the sql before posts it to database. // It does nothing in default. func (c *Core) HandleSqlBeforeCommit(sql string) string { return sql } // Tables retrieves and returns the tables of current schema. // It's mainly used in cli tool chain for automatically generating the models. // // It does nothing in default. func (c *Core) Tables(schema ...string) (tables []string, err error) { return } // TableFields retrieves and returns the fields information of specified table of current schema. // // Note that it returns a map containing the field name and its corresponding fields. // As a map is unsorted, the TableField struct has a "Index" field marks its sequence in the fields. // // It's using cache feature to enhance the performance, which is never expired util the process restarts. // // It does nothing in default. func (c *Core) TableFields(table string, schema ...string) (fields map[string]*TableField, err error) { return }