MCPcopy Index your code
hub / github.com/sqlalchemy/sqlalchemy / insert_column

Method insert_column

lib/sqlalchemy/sql/selectable.py:3270–3277  ·  view source on GitHub ↗

Insert a :class:`.ColumnClause` to this :class:`.TableClause` at a specific position. .. versionadded:: 2.1

(self, column: ColumnClause[Any], index: int)

Source from the content-addressed store, hash-verified

3268 self._insert_col_impl(column)
3269
3270 def insert_column(self, column: ColumnClause[Any], index: int) -> None:
3271 """Insert a :class:`.ColumnClause` to this :class:`.TableClause` at
3272 a specific position.
3273
3274 .. versionadded:: 2.1
3275
3276 """
3277 self._insert_col_impl(column, index=index)
3278
3279 @util.preload_module("sqlalchemy.sql.dml")
3280 def insert(self) -> util.preloaded.sql_dml.Insert:

Callers

nothing calls this directly

Calls 1

_insert_col_implMethod · 0.95

Tested by

no test coverage detected