adodb

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Post Reply
kishman155
Translator
Translator
Posts: 169
Joined: Sat Mar 12, 2005 12:30 pm

adodb

Post by kishman155 »

I trying to install a module i write and he gaves me that error

Database driver 'subdomains/testcms/lib/adodb/datadict/datadict-.inc.php' not available

the code is simple

Code: Select all

function Install()
	{
      $config = $this->cms->config;
     $db = $this->cms->db;
  $dict = NewDataDictionary($db);
  $flds = "
  ID I KEY AUTO,
  endung C(10),
  landver C(60),
  einricht N(10.2),
  jahrgeb N(10.2)
  ";

$taboptarray=array('mysql'=>'TYPE=MyISAM');
		$sqlarray = $dict->CreateTableSQL(cms_db_prefix()."domainpreis", $flds, $taboptarray);
		$dict->ExecuteSQLArray($sqlarray);

 }

???

i try to do this on othermodules but they are working fine.

PHP5, MYSQL, APACHE

thanks for help
Last edited by kishman155 on Fri Aug 26, 2005 1:55 pm, edited 1 time in total.
kishman155
Translator
Translator
Posts: 169
Joined: Sat Mar 12, 2005 12:30 pm

Re: adodb

Post by kishman155 »

Is there a place i could look wich modulenames are already choosen?

the problem was selfmade i have taken a name it was already in use so it could not work.

thanks
Kris
Post Reply

Return to “CMSMS Core”