alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (Database.scala)

This example Scala source code file (Database.scala) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

database, database, dbms, dbms, exception, exception, net, network, no, uri, uri

The Scala Database.scala source code

/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2011, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */



package scala.dbc
package syntax;


import java.net.URI;

@deprecated(DbcIsDeprecated, "2.9.0") object Database {
  
  def database (server:String, username:String, password:String): dbc.Database = {
    val uri = new URI(server);
    // Java 1.5 if (uri.toString().contains("postgres")) {
          if (uri.toString().indexOf("postgres") != -1) {
      new dbc.Database(new vendor.PostgreSQL {
        val uri = new URI(server);
        val user = username;
        val pass = password;
      })
    } else {
      throw new Exception("No DBMS vendor support could be found for the given URI");
    }
  }
  
}

Other Scala examples (source code examples)

Here is a short list of links related to this Scala Database.scala source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.