ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:database:text

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
database:text [2015/10/10 02:49] mnewnhamv5:database:text [2018/07/01 22:45] – prefer functions start lowercase (#430) peterdd
Line 1: Line 1:
 ====== Plain Text ====== ====== Plain Text ======
 +<WRAP alert>
 +This driver is broken in ADOdb version 5 when used with PHP version 5.3 and up. This is due to the fact that the **execute** method has a non-compliant 3rd argument to it. Absent any user requests, this driver will be removed in ADOdb version 6.
 +</WRAP> 
 ===== Description ===== ===== Description =====
-The ''text'' driver allows an array of data to be processed like a read-only database table. The connect statement provides the data, as well as information about columns and names.  +The ''text'' driver allows an array of data to be processed like a read-only database table. The connect statement provides the data, as well as information about columns and names. No meta functions are supported. The *WHERE* SQL statement is ignored. In order to filter requests, An eval'd expression must be passed as a third argument. 
 ------------------- -------------------
-<WRAP right box>+<WRAP right box 400px>
 == Syntax == == Syntax ==
   object connect(   object connect(
Line 16: Line 19:
 This is a 2 dimensional array of data. Optionally, The first row may contain the column names. If column names are not defined in first row, they must be defined in the third argument $columnNames. This is a 2 dimensional array of data. Optionally, The first row may contain the column names. If column names are not defined in first row, they must be defined in the third argument $columnNames.
 ==== $dataTypes ==== ==== $dataTypes ====
-The optional parameter $dataTypes provides an array of [[reference:metatype|metaTypes]] that match the columns in the table. This array forces a type onto each column. If the array is not provided, the driver probes each column in an attempt to discern the data types in the column. If results are ambiguous, the driver assigns a metaType of 'C'. Better results are always obtained if the column types are defined, because the driver only recognize C,I and N types.+The optional parameter $dataTypes provides an array of [[v5:dictionary:metatype|metaTypes]] that match the columns in the table. This array forces a type onto each column. If the array is not provided, the driver probes each column in an attempt to discern the data types in the column. If results are ambiguous, the driver assigns a metaType of 'C'. Better results are always obtained if the column types are defined, because the driver only recognize C,I and N types. 
 +---------------------- 
 +<WRAP right info 400px> 
 +Column names, whether provided in the first row of data or in the ''$columnNames'' array, must be **upper case** 
 +</WRAP> 
   
 ==== $columnNames ==== ==== $columnNames ====
-If the first row of the data array is not column names, the $column names parameter must provide a list of column names+If the first row of the data array is not column names, the ''$columnNames'' parameter must provide a array of column names
  
 If provided, the number of columns in the 2<sup>nd</sup> and 3<sup>rd</sup> arguments must exactly match the number in the first. If provided, the number of columns in the 2<sup>nd</sup> and 3<sup>rd</sup> arguments must exactly match the number in the first.
  
 +----------------------------
 +<WRAP right box 400px>
 +== Syntax ==
 +  mixed execute(
 +        string $sql
 +       optional bool $ignored=false
 +       optional string $evalStatement=false
 +        )
 +</WRAP>
 +===== execute =====
 +The execute() method will return a recordset. The recordset works like a normal recordset.
 +
 +There is partial support for SQL parsing. We process the SQL using the following rules:
 +  - SQL order by's always work for the first column ordered. Subsequent cols are ignored
 +  - All operations take place on the same table. In fact the FROM clause is ignored, You can use any name for the table.
 +
 +  - To simplify code, all columns are returned, except when selecting 1 column
 +
 +<code php>
 +$rs = $db->execute('select col1,col2 from table'); // sql ignored, will generate all cols
 +$rs = $db->execute('select col1 from table');
 +// sql accepted and processed -- any table name is accepted
 +$rs = $db->execute('select distinct col1 from table');
 +// sql accepted and processed
 +</code> 
 +Where clauses are ignored, but searching with the 3rd parameter of Execute is permitted.
 +
 +------------------------
 +<WRAP right important 400px>
 +Using eval may make code susceptible to SQL injection attacks
 +</WRAP>
 +==== Using an eval statement ====
 +The 3rd argument to ''execute'' has to use PHP syntax and the driver will attempt to [[http://php.net/manual/en/function.eval.php|eval()]] it. You can even use PHP functions, for example
 +---------------------
 +<code php>
 +$rs = $db->execute('select * from table',false,"\$COL1='abc' and \$COL2=3");
 +
 +/*
 +* the 3rd param is searched -- make sure that $COL1 is a legal column name
 +*/
 +</code>
 +
 +
 +
 +===== Limitations =====
 +The following SQL operations are not supported:
 +  * Group by, having, other clauses
 +  * Expression columns such as min(), max()
 +  * Joins are not permitted
 +
 +===== Usage =====
 +<code php>
 +include 'adodb/adodb.inc.php';
 +
 +$data = 
 +array(0=>array(10001,'1953-09-02','Georgi','Facello','M','1986-06-26'),
 +      1=>array(10002,'1964-06-02','Bezalel','Simmel','F','1985-11-21'),
 +      2=>array(10003,'1959-12-03','Parto','Bamford','M','1986-08-28'),
 +      3=>array(10004,'1954-05-01','Chirstian','Koblick','M','1986-12-01'),
 +      4=>array(10005,'1955-01-21','Kyoichi','Maliniak', 'M','1989-09-12'),
 +      5=>array(10006,'1953-04-20','Anneke','Preusig','F','1989-06-02')
 +);
 +
 +$cols      = array('EMPNO','BIRTH_DATE','FIRST_NAME','LAST_NAME','HIRE_DATE');
 +$metaTypes = array('I','D','C','C','C','D');
 +
 +$db = ADOnewConnection('text');
 +
 +
 +$db->connect($data,$cols,$metaTypes);
 +
 +$sql = 'select * from table';
 +
 +$result = $db->execute($sql,"\$EMPNO=10005");
  
- The Execute() function will return a recordset. The recordset works like a normal recordset. +while ($= $result->fetchRow()) 
- We have partial support for SQL parsing. We process the SQL using the following rules: +  print_r($r);
- 1. SQL order by's always work for the first column ordered. Subsequent cols are ignored +
- 2. All operations take place on the same table. No joins possible. In fact the FROM clause +
- is ignored! You can use any name for the table. +
- 3. To simplify code, all columns are returned, except when selecting 1 column +
-  $rs = $db->Execute('select col1,col2 from table'); // sql ignored, will generate all cols +
- We special case handling of 1 column because it is used in filter popups +
- $rs = $db->Execute('select col1 from table')+
- // sql accepted and processed -- any table name is accepted +
- $rs = $db->Execute('select distinct col1 from table'); +
- // sql accepted and processed +
-4. Where clauses are ignored, but searching with the 3rd parameter of Execute is permitted. +
-   This has to use PHP syntax and we will eval() it. You can even use PHP functions. +
-  $rs = $db->Execute('select * from table',false,"\$COL1='abc' and $\COL2=3") +
-  // the 3rd param is searched -- make sure that $COL1 is a legal column name +
- // and all column names must be in upper case. +
-4. Group by, having, other clauses are ignored +
-5. Expression columns, min(), max() are ignored +
-6. All data is readonly. Only SELECTs permitted.+
  
-$db = NewADOConnection('text');+</code>
v5/database/text.txt · Last modified: 2020/01/13 13:17 by dregad