TypeName returns the SQL type name for the given namespace and name. This handles dialect-specific type name mappings (e.g., pg_catalog.int4 -> integer)
(ns, name string)
| 9 | // TypeName returns the SQL type name for the given namespace and name. |
| 10 | // This handles dialect-specific type name mappings (e.g., pg_catalog.int4 -> integer) |
| 11 | TypeName(ns, name string) string |
| 12 | |
| 13 | // Param returns the parameter placeholder for the given parameter number. |
| 14 | // PostgreSQL uses $1, $2, etc. MySQL uses ? |
no outgoing calls
no test coverage detected