robots.txt Resource
I found this really good website for information about managing website crawlers using a robot.txt file (and meta tags). Really nice website with great information.
I found this really good website for information about managing website crawlers using a robot.txt file (and meta tags). Really nice website with great information.
I have wanted to try out OpenOffice.org Base for some time now, but I have never taken the time to figure out how to make it connect to a relational database system. And as it turns out there doesn’t seem to be all that much documentation to help. Anyway I needed to figure out a way to look over the structure of a Microsoft SQL database and I didn’t have access to a Windows machine, let alone Enterprise Manager.
So OpenOffice.org uses JDBC to connect to various databases, but sadly it does not come bundled with any of the libraries required to connect and communicate. So after researching a little I came across jTDS. And with a little messing around I got it to work. Below is what I did.
jtds:sqlserver://[host]:[port]/[database]
Replace [host] with the hostname of the server, replace [port] with the port that the database connects over (the default is usually 1433) and replace [database] with the name of the database.
net.sourceforge.jtds.jdbc.Driver
You can hit Test class if you want to. It should give you a promising message. After all of the fields are filled out hit Next.
After that you should be able to see and browse the tables, build queries and have fun.
- - - - -
You can also use this jTDS driver to connect to Sybase. All you have to change the Datasource URL to this form.
jtds:sybase://[host]:[port]/[database]
- - - - -
For connecting to MySQL you can follow these same steps except you need to get the MySQL JDBC driver class from the MySQL website (http://www.mysql.com/products/connector/j).
The Datasource URL is:
mysql://[host]:[port]/[database]
And the JDBC driver class is:
com.mysql.jdbc.Driver