jaydebeapi

Create MS Access database from a Python app

Create MS Access database from a Python app Question: I’m working with Python and interacting with a MS Access database via the JayDeBeApi library. Everything works well, I can create tables and all but the file *.accdb need to be created previously in the MS Access software Is there a way to dynamically create the …

Total answers: 1

Can't properly read SQL table in python: varchar columns imported as comma-separated characters / tuples

Can't properly read SQL table in python: varchar columns imported as comma-separated characters / tuples Question: I’m connecting to a Oracle database using the following code: jar = ojdbc8.jar path jvm_path = jvm.dll path args = ‘-Djava.class.path=%s’ % jar jpype.startJVM(jvm_path, args) con = jaydebeapi.connect("oracle.jdbc.driver.OracleDriver", url,[user, password], jar) The connection works fine, however the data is …

Total answers: 2