Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ParseWithSpecialTableName (0.2 sec)

  1. statement.go

    			}
    		}
    	}
    }
    
    func (stmt *Statement) Parse(value interface{}) (err error) {
    	return stmt.ParseWithSpecialTableName(value, "")
    }
    
    func (stmt *Statement) ParseWithSpecialTableName(value interface{}, specialTableName string) (err error) {
    	if stmt.Schema, err = schema.ParseWithSpecialTableName(value, stmt.DB.cacheStore, stmt.DB.NamingStrategy, specialTableName); err == nil && stmt.Table == "" {
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Fri Jan 12 08:42:21 GMT 2024
    - 19.8K bytes
    - Viewed (0)
  2. migrator/migrator.go

    	if m.DB.Statement != nil {
    		stmt.Table = m.DB.Statement.Table
    		stmt.TableExpr = m.DB.Statement.TableExpr
    	}
    
    	if table, ok := value.(string); ok {
    		stmt.Table = table
    	} else if err := stmt.ParseWithSpecialTableName(value, stmt.Table); err != nil {
    		return err
    	}
    
    	return fc(stmt)
    }
    
    // DataTypeOf return field's db data type
    func (m Migrator) DataTypeOf(field *schema.Field) string {
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Fri Apr 26 07:15:49 GMT 2024
    - 29K bytes
    - Viewed (0)
Back to top