Showing posts with label mysql. Show all posts
Showing posts with label mysql. Show all posts

Wednesday, 10 July 2013

AppFog’s FREE Quality Cloud Hosting – Supports Java, Grails, Spring, MySQL, PostgresSQL, Node, PHP, Drupal, WordPress, Python, Django, Ruby On Rails

 

af-logo

Launch your first app in minutes!

This is what AppFog claims and to let you verify their claim, they are offering a free quality cloud hosting account which comes up with the following jewels:

AppFog’s FREE account details:
Unlimited apps within 2GB RAM
  • Up to 8 service instances
  • 100MB storage per MySQL or PostgreSQL instance
  • 10MB RAM & 6 concurrent connections for Redis, MongoDB, and RabbitMQ instances
  • 5GB data transfer per month
  • 100 requests per second
  • Community-based support
  • Apps limited to *.af.cm domains

Besides their free offering, the pricing of other packages are very reasonable too. You can check all pricing details here.

AppFog’s Cloud supports following:

  1. Java
  2. Spring Framework
  3. Grails
  4. Ruby On Rails
  5. PHP
  6. Python
  7. Node
  8. MySQL
  9. PostgreSQL
  10. MongoDB
  11. ClearDB
  12. Drupal
  13. WordPress
  14. Django
  15. Redis
  16. RabbitMQ
  17. Etc..

Monday, 17 December 2012

JDBC URL String Part Five

 

Please click here to read the introduction of the series of posts and the format being used.

  1. Oracle – MySQL – ConnectorJ
    1. com.mysql.jdbc.Driver
    2. jdbc:mysql://<hostname>[,<failoverhost>][:<port>]/<dbname>[?<URL attribute>=<value>]*
    3. jdbc:mysql://localhost:3306/testdb
    4. 3306
  2. HP – NeoView – HPT4 
    1. com.hp.t4jdbc.HPT4Driver
    2. jdbc:hpt4jdbc://ip_addr_or_host_name:18650/[:][property=value[;property2=value2]...]
    3. jdbc:hpt4jdbc://primary_IP_addr_on_Neoview_DB:18650/
    4. 18650
  3. IBM – Netezza – Netezza
    1. org.netezza.Driver
    2. jdbc:netezza://<server>[:<port>]/<database>
    3. jdbc:netezza://netezzaserver:5480/sample
    4. 5480
  4. OpenBase – OpenBase – OpenBase
    1. com.openbase.jdbc.ObDriver
    2. jdbc:openbase://<server>/<databaseName>
    3. jdbc:openbase://localhost/petstore
    4. ???
  5. Oracle – Oracle – Oracle
    1. oracle.jdbc.driver.OracleDriver
    2. JDBC URLs
      1. Thin with Service Name - jdbc:oracle:thin:@//<host>:<port>/<service_name>
      2. Thin with SID - jdbc:oracle:thin:@<host>:<port>:<SID>
      3. Thin with TNS - jdbc:oracle:thin:@<TNSName> 
      4. OCI - jdbc:oracle:oci:@<database_name>
    3. Examples
      1. Thin with Service Name - jdbc:oracle:thin:@//192.168.2.1:1521/XE
      2. Thin with SID - jdbc:oracle:thin:192.168.2.1:1521:X01A
      3. Thin with TNS - jdbc:oracle:thin:@GL
      4. OCI - jdbc:oracle:oci:@HR
    4. 1521
  6. Pervasive – Pervasive – Pervasive
    1. com.pervasive.jdbc.v2.Driver
    2. jdbc:pervasive://<server>[:<port>]/<datasource>
    3. jdbc:pervasive://127.0.0.1:1583/sys
    4. 1583
  7. PostgreSQL – PostgreSQL – PostgreSQL
    1. org.postgresql.Driver
    2. jdbc:postgresql://<server>[:<port>]/<databaseName>
    3. jdbc:postgresql://localhost:5342/pgdb
    4. 5342