Oracle queries can fail for no good reason when running in Access.
When using || to concatenate, or at other times.
import boto | |
import boto.s3 | |
import os.path | |
import sys | |
# Fill these in - you get them when you sign up for S3 | |
AWS_ACCESS_KEY_ID = '' | |
AWS_ACCESS_KEY_SECRET = '' | |
# Fill in info on data to upload |
import Dict exposing (Dict) | |
import Html exposing (Html, div, text, input, ul, li) | |
import Html.Events exposing (..) | |
import Task exposing (Task) | |
import String | |
--------------------------- | |
main = | |
Html.program |
package controllers | |
import play.api.Play | |
import play.api.mvc.Action | |
import play.api.mvc.AnyContent | |
import com.google.inject.Inject | |
import play.api.http.HttpErrorHandler | |
class ConfigurableAssets @Inject() (playConfig: play.api.Configuration, errorHandler: HttpErrorHandler) extends AssetsBuilder(errorHandler) { |
Oracle queries can fail for no good reason when running in Access.
When using || to concatenate, or at other times.
VERSION=1.6.1 | |
ARCH=`uname -m` | |
ARCH_SYS=`uname -s | tr "[A-Z]" "[a-z]"` | |
if [[ "$ARCH" = "i386" ]] | |
then | |
ARCH = "i686" | |
fi | |
WORK_DIR=`pwd` |