ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:dictionary:structure:addcolumnobject

addColumnObject

From Version 5.21.0-beta-2

See Also

Structured Schema Management
Column Attributes Reference

Syntax
obj addColumnObject(
    string $columnName,
    string $columnType,
    optional string $platform=''
)

The method addColumnObject() is part of the Structured Schema Management suite, and adds a column to the current table object.


Parameters

$columnName

The column name can be any value understood by the DBMS.

$columnType

The column type is declared using a metaType definition.

Platform

The platform parameter can be any parameter recognized by the Platform keyword.

Usage

In the following example, a table employees is to be created. The table has 2 columns, COL1 and COL2

$t = new metaObjectStructure($dict,'employees');
 
$t->addColumnObject('COL1','I');
$t->addColumnObject('COL2','C(60)');
v5/dictionary/structure/addcolumnobject.txt · Last modified: 2016/04/09 19:26 by mnewnham