What are you trying to do exactly. If you're just trying to access say the ticket and wiki page data in Trac you could use the Trac XML/JSON-RPC mechanisms to do this from any language.
http://trac-hacks.org/wiki/XmlRpcPlugin http://trac-hacks.org/wiki/XmlRpcPlugin#Example If you are running your program on the same server which hosts Trac you could access the database directly using any languages binding to SQLite. The database lives in your Trac environment's db/trac.db file. I have the build scripts where I work setup to automatically retrieve and update pages in the wiki when they are run with information like which git branch was used to build, which branches were merged with it (I have scripts to automatically manage git branches and merge them together on demand), and a bunch of other details. So you can do quite a lot using the XMLRPC binding. Ben On Thu, Oct 25, 2012 at 5:59 PM, Igor Muzetti <[email protected]> wrote: > Hi! > > I need access e get data tablesfrom TRAC. > I can browse the database throught phpmyadmin but i want build the script > to retrive data periodically in an automated manner. > Anyone have tips on where I can start? What language I use to do this? Now > there is something that can help me make this work? > > thank's! > > -- > You received this message because you are subscribed to the Google Groups > "Trac Users" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/trac-users/-/MAqa1wKBih4J. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/trac-users?hl=en. -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/trac-users?hl=en.
