I have used below code to delete postgress database. My issue is I am unable to find query which would restore database. Please provide your assistance. thank you!!
from __future__ import with_statement
import sys
from sikuli import *
from com.ziclix.python.sql import zxJDBC
load("C:\\Test\\SikuliX\\postgresql-9.4.1207.jre6")
connection2 = zxJDBC.connect('jdbc:postgresql://127.0.0.1/?stringtype=unspecified', 'postgres', 'pswd@123', 'org.postgresql.Driver')
connection2.autocommit = True
curs = connection2.cursor()
curs.execute('DROP DATABASE IF EXISTS sampledb')
curs.execute( < I need query to restore database>)
Found workaround for this, instead of restore we can copy the database curs.execute('CREATE DATABASE [newdb] WITH TEMPLATE [originaldb] OWNER dbuser')