Question

Just started using ColdFusion Builder 2 with ColdFusion 9 and saw the RDS viewer ability in it. I thumbed through Forta's WACK book and tried a simple example from it, a basic INSERT using a Derby Embedded database:

INSERT INTO Directors(FirstName,LastName)
VALUES('Ben','Forta')

If you execute that query using the RDS Query Viewer you get an error:

Statement.executeQuery() cannot be used with a query that returns a row count.

Are INSERTs, DELETEs, and UPDATEs not allowed using this tool? I'm probably just spoiled using SQL Server's Management Studio which will let you do anything if you have the rights.

Thanks!

Was it helpful?

Solution

Ya, AFAIK INSERTs, DELETEs, and UPDATEs not allowed

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top