Executing a script using ISQL
Asked Answered
Y

2

9

I'm creating a simple isql script but it's not working and I need some help to find out whats wrong with it.
I need to connect to a database and execute a SQL file. This is my script called script.sql:

CONNECT 'localhost:C:\Monde\Servidor\db\monde.fdb' USER 'SYSDBA' PASSWORD 'masterkey';    
update usuario  
set senha = 'MYkWEn0kHLHHdm'  
where login = 'rose'

When I try to connect to my database using.:

isql.exe -i script.sql

I get this follow message.:

Use CONNECT or CREATE DATABASE to specify a database
Expected end of statement, encountered EOF
Yeta answered 28/4, 2011 at 16:1 Comment(0)
F
9

Ok although it's an old question I found out how to do it, you just need to append de -q parameter, like this:

isql.exe -q -i script.sql

Source:

iSQL Reference form Destructor.de

Flatfoot answered 24/4, 2013 at 17:15 Comment(0)
G
5

Append a semicolon to the end of the UPDATE statement:

CONNECT 'localhost:C:\Monde\Servidor\db\monde.fdb' USER 'SYSDBA' PASSWORD 'masterkey';
update usuario
set senha = 'MYkWEn0kHLHHdm'
where login = 'rose';
Genesisgenet answered 28/4, 2011 at 16:7 Comment(5)
Use CONNECT or CREATE DATABASE to specify a database Statement failed, SQLSTATE = 42000 Dynamic SQL Error -SQL error code = -104 -Unexpected end of command - line 1, column 8 After line 1 in file usuario.sql Command error: set senha = 'MYkWEn0kHLHHdm' where login = 'rose'Yeta
@user: put a newline after the last line.Genesisgenet
@user: put the cursor to the end of file, after the final semicolon, and press Enter.Genesisgenet
@user: can't help you then. I just reproduced this on my Firebird 1.5, it works. Please copy and paste the commands from my answer.Genesisgenet
Well, it worked. I forgot to add a comma after "update usuario". Thank you so much for your help.Yeta

© 2022 - 2024 — McMap. All rights reserved.