<div>Hi.</div><div>Thanks for your help ,i find the code about how to import the shapefile into postgis successfully. But now i met another problem.In geoserver/helper.py,</div><div><div><br></div><div>ds.connection_parameters.update(</div><div>        {'validate connections': 'true',</div><div>         'max connections': '10',</div><div>         'min connections': '1',</div><div>         'fetch size': '1000',</div><div>         'host': db['HOST'],</div><div>         'port': db['PORT'] if isinstance(</div><div>             db['PORT'], basestring) else str(db['PORT']) or '5432',</div><div>         'database': db['NAME'],</div><div>         'user': db['USER'],</div><div>         'passwd': db['PASSWORD'],</div><div>         'dbtype': db_engine,</div><div>        <font color="#ff0000"> 'schema': 'myschema2',</font></div><div>         }</div><div>    )</div></div><div><br></div><div>This code is about configuration of <span style="line-height: 1.5;">connection parameters in geoserver.In order to import shapefile into a specific schema in postgis , i added a new </span><span style="line-height: 1.5;">parameter   --'schema' . It works .But when i  changed the <font color="#ff0000">'myschema2' </font>to <font color="#ff0000">'myschema3'</font>(this schema has been built in my datebase before), the file didn't be imported into 'myschema3'. The file still was imported into 'myschema2'</span></div><div><span style="line-height: 1.5;">When i checked the website of geoserver, i found the </span><span style="line-height: 1.5;">parameter of schema unchanged too.  It seems that these parameters can't be changed by changing in code. BUT they can be changed when i change them in website.</span></div><div><span style="line-height: 1.5;">Maybe i have made some mistakes. I hope you can give me some advice.</span></div><div><span style="line-height: 1.5;">Thank you so much!</span></div><div><span style="line-height: 1.5;"><br></span></div>