Skip to Main Content

NoSQL Database

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Python driver 'invalid syntax' with Python 2.6

Christos Iraklis TsatsoulisFeb 2 2017 — edited Feb 6 2017

Hi all,

I am trying out the Python driver for Oracle NoSQL, following the example script from the documentation, but I am getting an 'invalid syntax' error when trying to import the necessary modules in Python 2.6:

[oracle@bigdatalite ~]$ python

Python 2.6.6 (r266:84292, Aug 18 2016, 08:36:59)

[GCC 4.4.7 20120313 (Red Hat 4.4.7-17)] on linux2

Type "help", "copyright", "credits" or "license" for more information.

>>> from nosqldb import ConnectionException

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

  File "/usr/lib/python2.6/site-packages/nosqldb/__init__.py", line 53, in <module>

    from nosqldb import Consistency

  File "/usr/lib/python2.6/site-packages/nosqldb/nosqldb.py", line 1289

    _time_consistency_allowed_keys = {ONDB_PERMISSIBLE_LAG, ONDB_TIMEOUT}

                                                          ^

SyntaxError: invalid syntax

with the exact same error when trying to import Factory & StoreConfig.

I have successfully installed the nosqldb 4.3.10 Python package using pip.

The error does not appear in Python 2.7.6.

According to the documentation, the nosqldb Python package is compatible with both Python 2.6 & 2.7.

Any ideas?

Many thanks in advance.

This post has been answered by Anand Chandak-Oracle on Feb 6 2017
Jump to Answer

Comments

794342
add the indicated line and it should work
(but you may get other problems, look you don't want, color etc)
public static void main(String[] args){
  SwingUtilities.invokeLater(new Runnable(){
    public void run(){
      JDialog.setDefaultLookAndFeelDecorated(true);//<-----------
      new FileChooserSizeTest();
}});
}
843805
Michael_Dunn
yes it works! if I add JDialog.setDefaultLookAndFeelDecorated(true);

but that's the only way you know?
because yes it give me looks and feel problems my project :(
794342
the only other way I've seen is to add a componenLlistener,
and in componentResized() check the dimension - if under the min, reset to min
but I've not seen anyone happy with this solution - the component can be
dragged to small size, then 'snaps back' to the minimum
843805
the only other way I've seen is to add a
componenLlistener,
and in componentResized() check the dimension - if
under the min, reset to min
but I've not seen anyone happy with this solution -
the component can be
dragged to small size, then 'snaps back' to the
minimum
I think one of the changes introduced in Java 6 is that setMinimumSize() on a Window will actually enforce the set size, meaning that the window size will "freeze" if the user tries to make it smaller. I haven't tried this myself though, so I won't vouch for it.
843805
...and I see now that the OP mentions he is already using Java 6, so never mind.
843805
Try creating the file chooser like this
                JFileChooser fc = new JFileChooser(){
                    protected JDialog createDialog(Component parent) throws HeadlessException {
                        JDialog dialog = super.createDialog(parent);
                        dialog.setMinimumSize(new Dimension(200,200));
                        return dialog;
                    }
                };
1 - 6
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Mar 6 2017
Added on Feb 2 2017
2 comments
1,960 views