Home
The Toolkit for Online Communities
15939 Community Members, 0 members online, 2326 visitors today
Log In Register

Forum OpenACS Development: help with dotlrn_communities table

OpenACS Home : Forums : OpenACS Development : help with dotlrn_communities table

Icon of Envelope Request notifications

+
Posted by Philip Wang on
hi, can anyone tell me how to see what values are stored in the table? (dotlrn_communities) i want to search for a community name (to get a community_id) and tried a search for pretty name, but says it's not in the table.
+
Posted by Deds Castillo on
What RDBMS are you using?

On oracle, you can use sqlplus and do "desc tablename".  On postgres, you can use psql and do "\d tablename".

Of course you can use any other app that you are familiar with as long as it can display the schema.  You may also want to check the sql directory of the dotlrn package to see how the table was created if in case you don't have access to those tools.

+
Posted by Philip Wang on
Thanks Deds, i'll try that out.