update : 2015.11.03
php.shukuma.com검색:
|
sqlite_fetch_column_typesSQLiteDatabase::fetchColumnTypes(PHP 5 < 5.4.0) sqlite_fetch_column_types -- SQLiteDatabase::fetchColumnTypes — Return an array of column types from a particular table 설명
array sqlite_fetch_column_types
( string
$table_name
, resource $dbhandle
[, int $result_type = SQLITE_ASSOC
] )객체 기반 형식 (method):
public array SQLiteDatabase::fetchColumnTypes
( string
$table_name
[, int $result_type = SQLITE_ASSOC
] )
sqlite_fetch_column_types() returns an array of column
data types from the specified 인수
반환값
Returns an array of column data types;
변경점
예제
Example #1 Procedural example
<?php
Example #2 Object-oriented example
<?php 위 예제의 출력: Column: bar Type: VARCHAR Column: arf Type: TEXT |