Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Manual for special LinksSQL MYSQL-Querys?

Quote Reply
Manual for special LinksSQL MYSQL-Querys?
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 Wink but the Syntax of the "LinkSQL-Querys" are very strange for me.

Thanks, Oliver
Quote Reply
Re: [flasi] Manual for special LinksSQL MYSQL-Querys? In reply to
In your Links SQL administration panel, go to

Help -> Table of Contents -> GT Module Documentation -> SQL -> Table (and others)

You will find many examples in there.

Ivan
-----
Iyengar Yoga Resources / GT Plugins
Quote Reply
Re: [yogi] Manual for special LinksSQL MYSQL-Querys? In reply to
Hello Yogi,

merci vielmals :-))))

Oliver