Search
 
SCRIPT & CODE EXAMPLE
 

SQL

python how to connect to sql server

import pandas as pd
import pyodbc 

conn = pyodbc.connect('Driver={SQL Server};'
                      'Server=RONSQLEXPRESS;'
                      'Database=test_database;'
                      'Trusted_Connection=yes;')

df = pd.read_sql_query('SELECT * FROM products', conn)

print(df)
print(type(df))
Comment

how to connect sql database in python

#create database in python with mysql

import mysql.connector

mydb = mysql.connector.connect(
  host="localhost",
  user="yourusername",
  password="yourpassword"
)

mycursor = mydb.cursor()

mycursor.execute("CREATE DATABASE mydatabase")
Comment

connect to sql database python

import sqlite3

try:
    sqliteConnection = sqlite3.connect('test.db')
    cursor = sqliteConnection.cursor()
    print("SQLITE Connection Established!")
    cursor.close()

except sqlite3.Error as error:
    print("Error while connecting to sqlite", error)
finally:
    if (sqliteConnection):
        sqliteConnection.close()
        print("Connection closed")
Comment

PREVIOUS NEXT
Code Example
Sql :: C# mysql data reader from two tables 
Sql :: mssql remove duplicate rows 
Sql :: SQL Primary Key multiple column 
Sql :: create postgres table 
Sql :: how to get table id sequence postgres 
Sql :: sql count(*) 
Sql :: select only distinct values another table 
Sql :: pl sql auto increment 
Sql :: sql select on string 
Sql :: missing left parenthesis error in sql 
Sql :: select count distinct multiple columns sql server 
Sql :: connect by query in oracle 
Sql :: change sql global mode 
Sql :: hidden error sql codeigniter 3 
Sql :: mql5 list all available symbols 
Sql :: sql store procedure 
Sql :: stored procedure data to table 
Sql :: alter in sql 
Sql :: extract postgresql 
Sql :: create fulltext index mysql 
Sql :: last date for each user sql 
Sql :: make selected text uppercase mssql 
Sql :: neo4j command to run script file 
Sql :: local sql server 
Sql :: find current server name for SSMS 
Sql :: less than and between in sql query 
Sql :: mysql undo delete 
Sql :: mamp mysql password 
Sql :: tsql cte in a transaction 
Sql :: postgres execute multiple sql file from command line 
ADD CONTENT
Topic
Content
Source link
Name
2+7 =