PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

Structures_DataGrid::bind | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

Structures_DataGrid::bind

Structures_DataGrid::bind() – シンプルな方法で、レコードセットをデータグリッドにバインドする

Synopsis

require_once 'Structures/DataGrid.php';

bool Structures_DataGrid::bind ( mixed $container , array $options = array() , string $type = = null )

Description

This package is not documented yet.

Parameter

mixed $container

サポートされる任意のデータソース型のレコードセット。

array $options

オプションです。データソースのオプションとして使用されます。

string $type

オプションです。データソースの型です。

Return value

成功した場合に True、それ以外の場合に PEAR_Error を返します。

Throws

例外はスローされません。

SQL クエリのバインド

<?php
// データベース接続を設定します
$options = array('dsn' => 'mysql://user:password@host/db_name');

// 基本的な SQL 文をデータソースとしてバインドします
// 注意: ORDER BY 句や LIMIT 句は自動的に追加されます
$test $datagrid->bind('SELECT * FROM my_table'$options);

// バインド時のエラーを表示します
if (PEAR::isError($test)) {
    echo 
$test->getMessage(); 
}
?>

DB_DataObject のバインド

<?php
$person 
= new DataObjects_Person;

$person->hair 'red';
$person->has_glasses 1

$datagrid->bind($person);
?>

Note

This function can not be called statically.

忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「Structures_DataGrid::bind」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | Structures_DataGrid::bind」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: