ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:axmls:setprefix

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
axmls:setprefix [2015/12/19 01:58] mnewnhamaxmls:setprefix [2015/12/19 16:58] mnewnham
Line 12: Line 12:
 Sets a prefix for database objects Sets a prefix for database objects
  
-Call this method to set a standard prefix that will be prepended to all database tables and indices. If the optional $addUnderscore parameter is set, an underscore is automatically appended to the prefix.+Call this method to set a standard prefix that will be prepended to all database tables and indices. 
  
 +If the optional ''$addUnderscore'' parameter is set, an underscore is automatically appended to the prefix.
 +
 +===== Usage =====
 +<code php>
 +/*
 +* Assuming xml schema contains tables a,b,c
 +*/
 +$axmls->setPrefix('test');
 +
 +/*
 +* tables will be created as 'test_a','test_b','test_c'
 +*/
 +
 +$axmls->setPrefix('test',false);
 +
 +/*
 +* tables will be created as 'testa','testb','testc'
 +*/
 +</code>
  
v5/axmls/setprefix.txt · Last modified: 2016/01/13 02:26 by mnewnham