diff options
author | 2022-05-16 15:48:56 -0700 | |
---|---|---|
committer | 2022-05-16 15:48:56 -0700 | |
commit | be1f469ec5d83047f53b990dc477b1ebaf9658ca (patch) | |
tree | 3c0b4a23c4fc87f6b020bb551bfa98ff7563847b | |
parent | a37f86e89dc01f884a1b4474c27c79d5932093a0 (diff) | |
download | bun-be1f469ec5d83047f53b990dc477b1ebaf9658ca.tar.gz bun-be1f469ec5d83047f53b990dc477b1ebaf9658ca.tar.zst bun-be1f469ec5d83047f53b990dc477b1ebaf9658ca.zip |
Update README.md
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1793,7 +1793,7 @@ stmt.run("Welcome to bun!"); ##### Database.prototype.prepare -`prepare(sql)` creates a `Statement` for the given SQL and caches it, but does not execute it. +`prepare(sql)` creates a `Statement` for the given SQL, but does not execute it. Unlike `query()`, this does not cache the compiled query. |