ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:dictionary:structure:addcolumnobject

This is an old revision of the document!


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. For example.

$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.1460222763.txt.gz · Last modified: 2017/04/21 11:29 (external edit)