Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
# 📦 Package: morph_lib.database # 🛠️ Function: execute_sql execute_sql( sql: str, connection: Optional[str] ) -> pd.DataFrame
from morph_lib.database import execute_sql @morph.func def func_name(context): data: pd.DataFrame = execute_sql("SELECT * FROM user;") return data