Hello

I started a brand new project and decided for this to start with the 
decoupled version of torque (3.0-b2).

Everything works fine except that the target "project-create-db" 
generates instructions to create a database name "default" in addition 
to the creation of my application database.

create-db.sql:
drop database if exists default;   <-- I don't need this one
create database default;           <-- This one generates a syntax error
drop database if exists sumo;      <-- This is my database, it's OK
create database sumo;

Creation messages:
       [sql] Failed to execute: drop database if exists default
       [sql] java.sql.SQLException: Syntax error or access violation: 
You have an error in your SQL syntax near 'default' at line 1
       [sql] Failed to execute: create database default
       [sql] java.sql.SQLException: Syntax error or access violation: 
You have an error in your SQL syntax near 'default' at line 1
       [sql] 2 of 4 SQL statements executed successfully


Is there a way to avoid such a behavior?

Frederic


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to