i have a dataframe
id value name
1 100 sam
2 766 abc
3 234 qqq
4 435 ppp
5 345 mmm
i want to save this table into sql server database into table 'tab1'
i can do df.to_sql()
but my program hangs when i'm doing this.(im using django).
is there any other way to save dataframe to sql server without using sql alchemy engine?