From de6f12b9bcc9e71c0453dd4984aabebbe3e2212d Mon Sep 17 00:00:00 2001 From: csobier Date: Mon, 28 Mar 2016 12:58:44 -0400 Subject: [PATCH] updated description about SQL response errors --- doc/making_calls.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/making_calls.md b/doc/making_calls.md index de616110..f24fdbca 100644 --- a/doc/making_calls.md +++ b/doc/making_calls.md @@ -153,7 +153,7 @@ https://{account}.cartodb.com/api/v2/sql?q=SELECT * FROM {table_name} LIMIT 1 ## Response errors -To help you debug your SQL queries, the CartoDB SQL API returns errors as part of the JSON response. Errors come back as follows, +To help you debug your SQL queries, the CartoDB SQL API returns the full error provided by PostgreSQL, as part of the JSON response. Error responses appear in the following format, #### Result @@ -165,7 +165,7 @@ To help you debug your SQL queries, the CartoDB SQL API returns errors as part o } ``` -You can use these errors to help understand your SQL. For more complete documentation see the Error Codes and Solutions section of this Users Guide. +You can use these errors to help understand your SQL. If you encounter errors executing SQL, either through the CartoDB Editor, or through the SQL API, it is suggested to Google search the error for independent troubleshooting. ## Write data to your CartoDB account