summaryrefslogtreecommitdiff
path: root/notebooks/sqlalchemy
diff options
context:
space:
mode:
Diffstat (limited to 'notebooks/sqlalchemy')
-rw-r--r--notebooks/sqlalchemy/sqlalchemy.ipynb5
1 files changed, 4 insertions, 1 deletions
diff --git a/notebooks/sqlalchemy/sqlalchemy.ipynb b/notebooks/sqlalchemy/sqlalchemy.ipynb
index 51b00ab..8bb8333 100644
--- a/notebooks/sqlalchemy/sqlalchemy.ipynb
+++ b/notebooks/sqlalchemy/sqlalchemy.ipynb
@@ -288,7 +288,9 @@
288 "*Table* object can be instructed to load information about itself from the corresponding database schema object already existing within the database.\n", 288 "*Table* object can be instructed to load information about itself from the corresponding database schema object already existing within the database.\n",
289 "This process is called *reflection*.\n", 289 "This process is called *reflection*.\n",
290 "\n", 290 "\n",
291 "If the DB schema is already defined and maintained \"somewhere else\", it may be useful to \"reflect\" the schema instead of explicitly defining it." 291 "If the DB schema is already defined and maintained \"somewhere else\", it may be useful to \"reflect\" the schema instead of explicitly defining it.\n",
292 "\n",
293 "**N.B. This is not the recommended way to use SQLAlchemy**"
292 ] 294 ]
293 }, 295 },
294 { 296 {
@@ -357,6 +359,7 @@
357 } 359 }
358 ], 360 ],
359 "source": [ 361 "source": [
362 "## N.B. This example does NOT represent SQLAlchemy - best practice\n",
360 "from sqlalchemy.ext.declarative import declarative_base\n", 363 "from sqlalchemy.ext.declarative import declarative_base\n",
361 "\n", 364 "\n",
362 "Base = declarative_base()\n", 365 "Base = declarative_base()\n",