-
If you don't want to alter ADOdb's code you can use the following in your code to resolve this issue.
This is what I have decided on doing right after my last message, doing it this way will save you in having to keep updating ADOdb every time a new version comes out that hasn't fixed this.
Anyway i have added a switch where you can switch the hack on or off.
Just change following to suit your...
2009-11-13 09:04:18 UTC in ADOdb
-
Ok a quick fix that got it working for me was the following in adodb-xmlschema03.inc.php:
change from the following:
function addTableOpt( $opt ) {
if(isset($this->currentPlatform)) {
$this->opts[$this->parent->db->databaseType] = $opt;
}
return $this->opts;
}
to:
function addTableOpt( $opt ) {
if(isset($this->currentPlatform)) {...
2009-11-13 08:29:52 UTC in ADOdb
-
I know this patch is over a year old but I have just gone over from mysql to mysqlt and I am having some issues...
I have found using databaseType breaks it when using derived db types like mysqli, mysqlt and may be the same for other databases.
When using databaseType the table options are not used when using db types mysqli or mysqlt etc.
This is due to the base class for mysqli and mysqlt...
2009-11-13 08:20:01 UTC in ADOdb
-
themightydude committed revision 1431 to the BlackNova Traders SVN repository, changing 1 files.
2009-10-23 21:18:06 UTC in BlackNova Traders
-
Oh, forgot to mention this is for version adodb508a.
2009-06-14 16:38:09 UTC in ADOdb
-
There is most prob a better way to do this but this works for me :)
I have attached a patch that enables you have multi table options layed out like the following:
InnoDB
This is an example Test Table
...
It also allows you to...
2009-06-14 16:35:59 UTC in ADOdb
-
Hello John
I am one of the Main Developers to Blacknova Traders and i was wondering is
there any chance in ADODB supporting multiple Table options example shown
below:
InnoDB
This is an example Table
2009-06-14 15:12:19 UTC in ADOdb
-
Ooops wrong section, sorry.
2009-06-14 15:09:50 UTC in ADOdb
-
Hello John
I am one of the Main Developers to Blacknova Traders and i was wondering is there any chance in ADODB supporting multiple Table options example shown below:
InnoDB
This is an example Table
2009-06-14 15:00:09 UTC in ADOdb