Skip to content

Commit 0c61e2b

Browse files
authored
Update for reserved keywords
1 parent d14af4a commit 0c61e2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/ff-integrations/database/local-sql/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ If you don't yet have an SQLite database, you can easily create one using tools
5050
For this example, we'll create a "Notes" table with `ID`, `Title`, `Details`, `DueDate`, and `IsCompleted` as columns.
5151

5252
:::warning
53-
It is advisable to avoid using SQLite reserved keywords such as `type` and `data` as column names to prevent potential build errors or unexpected behavior. SQLite reserves certain words for its SQL syntax, and using these as identifiers without proper handling may cause issues. For a comprehensive list of reserved keywords, refer to the [**SQL reserved words**](https://en.wikipedia.org/wiki/List_of_SQL_reserved_words).
53+
It is advisable to avoid using any SQL reserved keywords such as `type` and `data` as column names to prevent potential build errors or unexpected behavior. SQLite reserves certain words for its SQL syntax, and using these as identifiers without proper handling may cause issues. For a comprehensive list of reserved keywords, refer to the [**SQL reserved words**](https://en.wikipedia.org/wiki/List_of_SQL_reserved_words).
5454
:::
5555

5656
Here's how you can create and configure the database:

0 commit comments

Comments
 (0)