Skip to content

Commit 79e71f4

Browse files
Update train-mysql-heatwave-deploy-xgboost.ipynb
Moving the mysql connection line to source. It wasn't correctly aligned in the source field previously.
1 parent 32a70f2 commit 79e71f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

notebook_examples/train-mysql-heatwave-deploy-xgboost.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@
302302
"source": [
303303
"## Connecting to MySQL\n",
304304
"\n",
305-
"engine = sqlalchemy.create_engine('mysql+mysqlconnector://admin:YOURPassword234#_@10.10.20.2/app01')"
305+
""
306306
]
307307
},
308308
{
@@ -312,6 +312,7 @@
312312
"metadata": {},
313313
"outputs": [],
314314
"source": [
315+
"engine = sqlalchemy.create_engine('mysql+mysqlconnector://admin:YOurPassword1234@10.10.20.2/app01')\n",
315316
"## Load data from MySQL\n",
316317
"query = \"\"\"\n",
317318
"SELECT days_since_last_sold, average_days_between_sales, stock, orders_last_30_days, \n",

0 commit comments

Comments
 (0)