Newbie question about update queries
I know this is really a trivial problem, but I'm a complete beginner and my hosting service won't help
Here is the code for a CFM type web page that I created:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<p>Now try to add a record!</p>
<!-- First we select all data from the table -->
<cfquery name="AddUser" datasource="CFTest">
INSERT INTO Users (Firstname, Lastname,Age)
VALUES ('Marie', 'Ricot',65)
</cfquery>
</body>
</html>
When I submit this, I get this error (can't attach image-too slow loading)
"Error occurred while processing this request
Error executing database query
{MacromediaSequelink JDBC driverODBCSocketMicrosoftODBCMicrosoftAccessDriver] Operation must use an updateable query
In other words, there is something wrong with the insert although what I do not know
any help very much appreciated
Paul