This topic is locked
[SOLVED]

 Addfieldwrappers

1/11/2013 10:51:15 AM
PHPRunner General questions
J
jackheitzer@gmail.com author

Hi All,
Just wondering what "addFieldWrappers" or "addTableWrappers" are.
Can someone shine a light?
All the best,
Jack

Sergey Kornilov admin 1/11/2013

They add wrappers to field or table names.
For example to use a field with space in its name in SQL query you need to wrap it.
In MySQL:

select `some field` from `some table`


In SQL Server, MS Access

select [some field] from [some table]
J
jackheitzer@gmail.com author 1/12/2013



They add wrappers to field or table names.
For example to use a field with space in its name in SQL query you need to wrap it.
In MySQL:

select `some field` from `some table`


In SQL Server, MS Access

select [some field] from [some table]



Thanks, perfectly clear!