Welcome, Guest
Username: Password: Remember me

TOPIC: How Many Tables i can create in the new table Menu

How Many Tables i can create in the new table Menu 12 May 2014 08:55 #12435

  • rolandddiazcom
  • rolandddiazcom's Avatar
  • Offline
  • Junior Member
  • Website Developer
  • Posts: 21
  • Karma: 0
How Many Tables i can create in the new table Menu?

I am planning to create lots of tables, how many tables i can create in J-Cook? New table?
The administrator has disabled public write access.

How Many Tables i can create in the new table Menu 14 May 2014 08:06 #12438

  • admin
  • admin's Avatar
  • Offline
  • Administrator
  • Chef
  • Posts: 3711
  • Thank you received: 984
  • Karma: 140
Unlimited, but there is a memory limit in the generator and if your component is huge, you can experience memory limits. Also for loading it in the builder.
Let's say that it depends if you create every time 2 layout front and 2 layouts back for every table it is different than only handling a simple table in database.
Let's say until 50 tables you will not experiment any problem. Then with FoF in future, Cook will be able to handle more tables.
Coding is now a piece of cake
The administrator has disabled public write access.

How Many Tables i can create in the new table Menu 14 May 2014 08:11 #12439

  • admin
  • admin's Avatar
  • Offline
  • Administrator
  • Chef
  • Posts: 3711
  • Thank you received: 984
  • Karma: 140
I have seen projects in cook with 80 tables, so don't worry too much.
If you think it will be huge, think to developp you application in splitted components. One component for engine, another one for reporting, etc...

Try also to merge your tables for simple lists,
When you have multiple tables with the same columns defined, you can optimize, such as CCK or com_categories. There is a field that specify the context of the data. So the same table can store items for different purposes. In this way you can put many tables in the same one
Coding is now a piece of cake
The administrator has disabled public write access.

How Many Tables i can create in the new table Menu 18 May 2014 08:34 #12447

  • rolandddiazcom
  • rolandddiazcom's Avatar
  • Offline
  • Junior Member
  • Website Developer
  • Posts: 21
  • Karma: 0
How do i use the external database connection or multiple database connection to query outside joomla database tables and show it in the j-cook grid layout?

my goal is to use external or existing tables not connected in main joomla database, but to show the results in j-cook builder.

Example view 1 :

external database with tables to query it and display in the view 1

another continuous external database connection

example : view 2

external database connection another database name with tables


Now how do i insert it in the j-cook pro generated model scripts?

currently i only see the $query from table generated in j-cook but how do i insert the external database

Below are the external db configuration that i need to be placed in j-cook

<?php
$db = JFactory::getDbo();
?>

<?php
$option = array(); //prevent problems

$option = 'mysql'; // Database driver name
$option = 'db.myhost.com'; // Database host name
$option = 'fredbloggs'; // User for database authentication
$option = 's9(39s£h[%dkFd'; // Password for database authentication
$option = 'bigdatabase'; // Database name
$option = 'abc_'; // Database prefix (may be empty)

$db = JDatabase::getInstance( $option );
?>

public function __construct($config = array())
{
parent::__construct($config);

$option = array(); //prevent problems

$option = 'mysql'; // Database driver name
$option = 'localhost'; // Database host name
$option = 'myusername'; // User for database authentication
$option = 'saltedpassword'; // Password for database authentication
$option = 'db_extern'; // Database name
$option = ''; // Database prefix (may be empty)

$db = JDatabase::getInstance( $option );
parent::setDbo($db);
}

this code must be eliminated if needed but only the needed for j-cook should be used.

Anybody help ?
The administrator has disabled public write access.
Time to create page: 0.098 seconds

Get Started