Hi,
does anybody knows where I can get a syntax manual for the special LinksSQL MySQL-Querys like these:
my $cat_db = $DB->table ('Category','CatLinks');
$cat_db->select_options ('GROUP BY LinkID');
my $sth = $cat_db->select ( { 'CatLinks.LinkID' => $id }, ['Category.ID', 'Category.Full_Name'] );
Yes, I know "normal" MySQL-Querys and mysql.com
but the Syntax of the "LinkSQL-Querys" are very strange for me.
Thanks, Oliver
does anybody knows where I can get a syntax manual for the special LinksSQL MySQL-Querys like these:
my $cat_db = $DB->table ('Category','CatLinks');
$cat_db->select_options ('GROUP BY LinkID');
my $sth = $cat_db->select ( { 'CatLinks.LinkID' => $id }, ['Category.ID', 'Category.Full_Name'] );
Yes, I know "normal" MySQL-Querys and mysql.com

Thanks, Oliver