Wish List , plus placement
It would be nice if I could configure reformat to make my code look
like this:
st = "UPDATE mboards "
+ "SET formFactor=?, widthInCm=?, heightInCm=?, "
+ "memoryType=?, maxGig=?, ramSpeedMHz=?, "
+ "usb2=?, usb2Rear=?, usb2Internal=?, usb3Rear=?,"
+ "lastUpdated=? "
+ "WHERE manufacturer=? AND model=?;");
or like this:
st = "UPDATE mboards " +
"SET formFactor=?, widthInCm=?, heightInCm=?, " +
"memoryType=?, maxGig=?, ramSpeedMHz=?, " +
"usb2=?, usb2Rear=?, usb2Internal=?, usb3Rear=?," +
"lastUpdated=? " +
"WHERE manufacturer=? AND model=?;"); +
--
Roedy Green Canadian Mind Products
http://mindprod.com
There are only two industries that refer to their customers as "users".
~ Edward Tufte
Please sign in to leave a comment.
Hi Roedy,
Please try 'Project Settings - Code Style - General - Use indents relative to expression start'
Denis