Documentation
¶
Overview ¶
Package gosqlx provides convenient high-level functions for SQL parsing.
This package wraps the lower-level tokenizer and parser APIs to provide a simple, ergonomic interface for common operations. All object pool management is handled internally.
For performance-critical applications that need fine-grained control, use the lower-level APIs in pkg/sql/tokenizer and pkg/sql/parser directly.
Example (AdvancedFeatures) ¶
Example_advancedFeatures demonstrates parsing advanced SQL features.
package main
import (
"fmt"
"log"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
// Window functions
windowSQL := "SELECT name, ROW_NUMBER() OVER (PARTITION BY dept ORDER BY salary DESC) as rank FROM employees"
ast1, err := gosqlx.Parse(windowSQL)
if err != nil {
log.Fatal(err)
}
// CTEs
cteSQL := "WITH active AS (SELECT * FROM users WHERE active = true) SELECT * FROM active"
ast2, err := gosqlx.Parse(cteSQL)
if err != nil {
log.Fatal(err)
}
// JOINs
joinSQL := "SELECT u.name, o.total FROM users u INNER JOIN orders o ON u.id = o.user_id"
ast3, err := gosqlx.Parse(joinSQL)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Parsed window: %d, CTE: %d, JOIN: %d\n", len(ast1.Statements), len(ast2.Statements), len(ast3.Statements))
}
Output: Parsed window: 1, CTE: 1, JOIN: 1
Example (Batch) ¶
Example_batch demonstrates parsing multiple SQL statements efficiently.
package main
import (
"fmt"
"log"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
queries := []string{
"SELECT * FROM users",
"SELECT * FROM orders",
"SELECT * FROM products",
}
asts, err := gosqlx.ParseMultiple(queries)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Successfully parsed %d queries\n", len(asts))
}
Output: Successfully parsed 3 queries
Example (BatchValidation) ¶
Example_batchValidation demonstrates validating multiple queries.
package main
import (
"fmt"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
queries := []string{
"SELECT * FROM users",
"INSERT INTO logs (message) VALUES ('test')",
"UPDATE users SET active = false WHERE id = 1",
"DELETE FROM temp_data WHERE created_at < NOW()",
}
if err := gosqlx.ValidateMultiple(queries); err != nil {
fmt.Printf("Validation failed: %v\n", err)
return
}
fmt.Printf("All %d queries are valid\n", len(queries))
}
Output: All 4 queries are valid
Example (ComplexQuery) ¶
Example_complexQuery demonstrates parsing a complex SQL query.
package main
import (
"fmt"
"log"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
sql := `
SELECT
u.id,
u.name,
COUNT(o.id) as order_count
FROM users u
LEFT JOIN orders o ON u.id = o.user_id
WHERE u.active = true
GROUP BY u.id, u.name
ORDER BY order_count DESC
`
ast, err := gosqlx.Parse(sql)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Parsed complex query with %d statement(s)\n", len(ast.Statements))
}
Output: Parsed complex query with 1 statement(s)
Example (Cte) ¶
Example_cte demonstrates parsing Common Table Expressions (CTEs).
package main
import (
"fmt"
"log"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
sql := `
WITH active_users AS (
SELECT * FROM users WHERE active = true
)
SELECT * FROM active_users
`
ast, err := gosqlx.Parse(sql)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Successfully parsed CTE query\n")
_ = ast
}
Output: Successfully parsed CTE query
Example (ErrorHandling) ¶
Example_errorHandling demonstrates proper error handling.
package main
import (
"fmt"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
sql := "SELECT * FROM" // Invalid: missing table name
ast, err := gosqlx.Parse(sql)
if err != nil {
fmt.Println("Parse error occurred")
// In real code: log detailed error message
_ = err
return
}
_ = ast
}
Output: Parse error occurred
Example (Format) ¶
Example_format demonstrates SQL formatting with options.
package main
import (
"fmt"
"log"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
sql := "SELECT * FROM users WHERE active = true"
// Use default formatting options
opts := gosqlx.DefaultFormatOptions()
opts.AddSemicolon = true
formatted, err := gosqlx.Format(sql, opts)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Formatted SQL length: %d\n", len(formatted))
}
Output: Formatted SQL length: 40
Example (FormatWithOptions) ¶
Example_formatWithOptions demonstrates custom formatting options.
package main
import (
"fmt"
"log"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
sql := "SELECT id, name FROM users"
opts := gosqlx.FormatOptions{
IndentSize: 4,
UppercaseKeywords: true,
AddSemicolon: true,
SingleLineLimit: 80,
}
formatted, err := gosqlx.Format(sql, opts)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Formatted with custom options: %d chars\n", len(formatted))
}
Output: Formatted with custom options: 27 chars
Example (MigrationFromLowLevel) ¶
Example_migrationFromLowLevel demonstrates migrating from low-level API.
package main
import (
"fmt"
"log"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
// Instead of manually managing tokenizer and parser:
// tkz := tokenizer.GetTokenizer()
// defer tokenizer.PutTokenizer(tkz)
// tokens, err := tkz.Tokenize([]byte(sql))
// ...
// p := parser.NewParser()
// defer p.Release()
// ast, err := p.Parse(tokens)
// Simply use:
ast, err := gosqlx.Parse("SELECT * FROM users")
if err != nil {
log.Fatal(err)
}
fmt.Printf("Migrated to simple API: %d statement(s)\n", len(ast.Statements))
}
Output: Migrated to simple API: 1 statement(s)
Example (MustParse) ¶
Example_mustParse demonstrates MustParse for SQL literals.
package main
import (
"fmt"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
// Use MustParse only with SQL literals you control
// (e.g., in tests or initialization code)
ast := gosqlx.MustParse("SELECT 1")
fmt.Printf("Type: %T\n", ast)
}
Output: Type: *ast.AST
Example (ParseBytes) ¶
Example_parseBytes demonstrates parsing from a byte slice.
package main
import (
"fmt"
"log"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
// Useful when SQL is already in byte form (e.g., from file I/O)
sqlBytes := []byte("SELECT * FROM users")
ast, err := gosqlx.ParseBytes(sqlBytes)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Parsed from bytes: %d statement(s)\n", len(ast.Statements))
}
Output: Parsed from bytes: 1 statement(s)
Example (RealWorldUsage) ¶
Example_realWorldUsage demonstrates a realistic use case.
package main
import (
"fmt"
"log"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
// Validate user input before executing
userSQL := "SELECT * FROM users WHERE id = 1"
// First validate
if err := gosqlx.Validate(userSQL); err != nil {
fmt.Println("Invalid SQL from user")
return
}
// Parse to inspect structure
ast, err := gosqlx.Parse(userSQL)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Valid query with %d statement(s)\n", len(ast.Statements))
}
Output: Valid query with 1 statement(s)
Example (Simple) ¶
Example_simple demonstrates the simplest way to parse SQL.
package main
import (
"fmt"
"log"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
sql := "SELECT * FROM users"
ast, err := gosqlx.Parse(sql)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Parsed %d statement(s)\n", len(ast.Statements))
}
Output: Parsed 1 statement(s)
Example (Validate) ¶
Example_validate demonstrates SQL validation.
package main
import (
"fmt"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
// Valid SQL
if err := gosqlx.Validate("SELECT * FROM users"); err != nil {
fmt.Println("Invalid SQL")
} else {
fmt.Println("Valid SQL")
}
// Invalid SQL
if err := gosqlx.Validate("INVALID SQL"); err != nil {
fmt.Println("Invalid SQL detected")
}
}
Output: Valid SQL Invalid SQL detected
Example (ValidateMultiple) ¶
Example_validateMultiple demonstrates validating multiple SQL statements.
package main
import (
"fmt"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
queries := []string{
"SELECT * FROM users",
"INSERT INTO users (name) VALUES ('test')",
"UPDATE users SET active = true WHERE id = 1",
}
if err := gosqlx.ValidateMultiple(queries); err != nil {
fmt.Printf("Validation failed: %v\n", err)
return
}
fmt.Println("All queries are valid")
}
Output: All queries are valid
Example (WindowFunctions) ¶
Example_windowFunctions demonstrates parsing SQL with window functions.
package main
import (
"fmt"
"log"
"github.com/ajitpratap0/GoSQLX/pkg/gosqlx"
)
func main() {
sql := "SELECT name, salary, ROW_NUMBER() OVER (ORDER BY salary DESC) as rank FROM employees"
ast, err := gosqlx.Parse(sql)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Successfully parsed window function query\n")
_ = ast
}
Output: Successfully parsed window function query
Index ¶
- func Format(sql string, options FormatOptions) (string, error)
- func MustParse(sql string) *ast.AST
- func Parse(sql string) (*ast.AST, error)
- func ParseBytes(sql []byte) (*ast.AST, error)
- func ParseMultiple(queries []string) ([]*ast.AST, error)
- func ParseWithContext(ctx context.Context, sql string) (*ast.AST, error)
- func ParseWithTimeout(sql string, timeout time.Duration) (*ast.AST, error)
- func Validate(sql string) error
- func ValidateMultiple(queries []string) error
- type FormatOptions
Examples ¶
- Package (AdvancedFeatures)
- Package (Batch)
- Package (BatchValidation)
- Package (ComplexQuery)
- Package (Cte)
- Package (ErrorHandling)
- Package (Format)
- Package (FormatWithOptions)
- Package (MigrationFromLowLevel)
- Package (MustParse)
- Package (ParseBytes)
- Package (RealWorldUsage)
- Package (Simple)
- Package (Validate)
- Package (ValidateMultiple)
- Package (WindowFunctions)
- Format
- Parse
- ParseMultiple
- Validate
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Format ¶
func Format(sql string, options FormatOptions) (string, error)
Format formats SQL according to the specified options.
This is a placeholder implementation that currently validates the SQL and returns it with basic formatting. Full AST-based formatting will be implemented in a future version.
Example:
sql := "select * from users where active=true" opts := gosqlx.DefaultFormatOptions() opts.UppercaseKeywords = true formatted, err := gosqlx.Format(sql, opts)
Returns the formatted SQL string or an error if SQL is invalid.
Example ¶
Example demonstrating SQL formatting
sql := "SELECT * FROM users WHERE active = true"
opts := DefaultFormatOptions()
opts.AddSemicolon = true
formatted, err := Format(sql, opts)
if err != nil {
panic(err)
}
_ = formatted
func MustParse ¶
MustParse is like Parse but panics on error.
This is useful for parsing SQL literals at startup or in tests where parse errors indicate a programming bug.
Example:
// In test or init()
ast := gosqlx.MustParse("SELECT 1")
func Parse ¶
Parse is a convenience function that tokenizes and parses SQL in one call.
This function handles all object pool management internally, making it ideal for simple use cases where performance overhead is acceptable.
Example:
sql := "SELECT * FROM users WHERE active = true"
astNode, err := gosqlx.Parse(sql)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Parsed: %T\n", astNode)
For batch processing or performance-critical code, use the lower-level tokenizer and parser APIs directly to reuse objects.
Example ¶
Example demonstrating the simple Parse API
sql := "SELECT * FROM users WHERE active = true"
ast, err := Parse(sql)
if err != nil {
panic(err)
}
// Use the AST
_ = ast
func ParseBytes ¶
ParseBytes is like Parse but accepts a byte slice.
This is useful when you already have SQL as bytes (e.g., from file I/O) and want to avoid the string → []byte conversion overhead.
Example:
sqlBytes := []byte("SELECT * FROM users")
astNode, err := gosqlx.ParseBytes(sqlBytes)
func ParseMultiple ¶
ParseMultiple parses multiple SQL statements and returns their ASTs.
This is more efficient than calling Parse() repeatedly because it reuses the tokenizer and parser objects.
Example:
queries := []string{
"SELECT * FROM users",
"SELECT * FROM orders",
}
asts, err := gosqlx.ParseMultiple(queries)
Example ¶
Example demonstrating batch parsing
queries := []string{
"SELECT * FROM users",
"SELECT * FROM orders",
}
asts, err := ParseMultiple(queries)
if err != nil {
panic(err)
}
for i, ast := range asts {
_ = i
_ = ast
}
func ParseWithContext ¶
ParseWithContext is a convenience function that tokenizes and parses SQL with context support.
This function handles all object pool management internally and supports cancellation via the provided context. It's ideal for long-running operations that need to be cancellable or have timeouts.
Returns context.Canceled if the context is cancelled during parsing, or context.DeadlineExceeded if the timeout expires.
Example:
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
astNode, err := gosqlx.ParseWithContext(ctx, sql)
if err == context.DeadlineExceeded {
log.Println("Parsing timed out")
}
func ParseWithTimeout ¶
ParseWithTimeout is a convenience function that parses SQL with a timeout.
This is a wrapper around ParseWithContext that creates a timeout context automatically. It's useful for quick timeout-based parsing without manual context management.
Example:
astNode, err := gosqlx.ParseWithTimeout(sql, 5*time.Second)
if err == context.DeadlineExceeded {
log.Println("Parsing timed out after 5 seconds")
}
func Validate ¶
Validate checks if the given SQL is syntactically valid.
This is a convenience function that only validates syntax without building the full AST, making it slightly faster than Parse().
Example:
if err := gosqlx.Validate("SELECT * FROM users"); err != nil {
fmt.Printf("Invalid SQL: %v\n", err)
}
Returns nil if SQL is valid, or an error describing the problem.
Example ¶
Example demonstrating SQL validation
if err := Validate("SELECT * FROM users"); err != nil {
panic(err)
}
func ValidateMultiple ¶
ValidateMultiple validates multiple SQL statements.
Returns nil if all statements are valid, or an error for the first invalid statement encountered.
Example:
queries := []string{
"SELECT * FROM users",
"INVALID SQL HERE",
}
if err := gosqlx.ValidateMultiple(queries); err != nil {
fmt.Printf("Validation failed: %v\n", err)
}
Types ¶
type FormatOptions ¶
type FormatOptions struct {
// IndentSize is the number of spaces to use for indentation (default: 2)
IndentSize int
// Uppercase keywords (default: false)
UppercaseKeywords bool
// AddSemicolon adds a semicolon at the end if missing (default: false)
AddSemicolon bool
// SingleLineLimit is the maximum line length before breaking (default: 80)
// Note: Currently a placeholder for future implementation
SingleLineLimit int
}
FormatOptions controls SQL formatting behavior.
func DefaultFormatOptions ¶
func DefaultFormatOptions() FormatOptions
DefaultFormatOptions returns the default formatting options.