Home


Support your local community.

We need your help to continue to provide essential community services to people in crisis.

We are a local organisation that provides support and expertise within the local community, to potential volunteers, existing volunteers, and organisations that involve volunteers.

Get in touch:

Buffy Summers
1630 Revello Drive, Sunnydale, CA
myemail@example.com

Follow us:

1,652

Volunteers available

1,132

Volunteer opportunities

1,927

Matches last year

Want to volunteer?

We’ve had an incredible response so far, and are doing everything we can to respond to everyone who wants to volunteer in one of our community programmes.

Are you a business?

We are uniting our resources around this challenge, and we are combining our resources and asks to make it easy for people to support their communities.

Hear more from our community.

Create table on a database using python and MySQL

$python3 dt.py $cat dt.py # importing required library import mysql.connector # connecting to the database dataBase = mysql.connector.connect( host = “localhost”, user = “jeff”, passwd = “sixer”, database = “learning” ) # preparing a cursor object cursorObject = dataBase.cursor() # creating table studentRecord = “””CREATE TABLE STUDENT ( NAME VARCHAR(20) NOT NULL, BRANCH VARCHAR(50), ROLL…

Connect MySQL database using MySQL-Connector Python

$cat fdb.py import mysql.connector conn = mysql.connector.connect(host=’localhost’, database=’learning’, user=’jeff’, password=’sixer’) print(conn) conn.close $python3 fdb.py <mysql.connector.connection_cext.CMySQLConnection object at 0x7f143fc84790> $

“So many things are possible just as long as you don’t know they’re impossible.”

Norton Juster

%d bloggers like this: