AW: [opencms-dev] SQL Errors cause Problems with DB2

Andreas Schouten Andreas.Schouten at framfab.de
Fri Feb 9 18:48:12 CET 2001


Hi Simon,

we have done some of the changes you have suggested in the genericsql
package. You can find them in the cvs-repository or in the next build.

The readTask datatype problem is not fixed at the moment.

Regards,

Andreas

-----Ursprüngliche Nachricht-----
Von: Simon Wilks [mailto:simon.wilks at silion.ch]
Gesendet: Freitag, 2. Februar 2001 15:33
An: opencms-dev at www.opencms.com
Betreff: AW: [opencms-dev] SQL Errors cause Problems with DB2


Hi Andreas,

Yes there are a few small changes. I will try and finish up this weekend and
submit it in the first few days next week. So far it seems to work well
except for my the performance problem when initialising.

Regards,


Simon Wilks
software engineer
simon.wilks at silion.ch
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
silion (switzerland) ag    software engineering
spinnereistrasse 8              9008 st. gallen
tel 0878 80 90 60             fax 0878 80 90 30
info at silion.ch                    www.silion.ch

a member of the Penta Group   www.pentagroup.ch


> -----Ursprüngliche Nachricht-----
> Von: owner-opencms-dev at www.opencms.com
> [mailto:owner-opencms-dev at www.opencms.com]Im Auftrag von Andreas
> Schouten
> Gesendet: Freitag, 2. Februar 2001 09:50
> An: 'opencms-dev at www.opencms.com'
> Betreff: AW: [opencms-dev] SQL Errors cause Problems with DB2
>
>
> Hi Simon,
>
> I will look into the generic-part and fix the problems. Are there
> any other
> changes made to your class to fit the DB2-needs? If so, we would like to
> check in your class into the repository.
>
> Regards,
>
> Andreas Schouten
>
> -----Ursprüngliche Nachricht-----
> Von: Simon Wilks [mailto:simon.wilks at silion.ch]
> Gesendet: Donnerstag, 1. Februar 2001 17:01
> An: opencms-dev at opencms.com
> Betreff: [opencms-dev] SQL Errors cause Problems with DB2
>
>
> Hi Andreas and Team,
>
> In my journeys with DB2 and OpenCms I have noticed two problems with SQL
> statements which are causing trouble with DB2. I am overriding them but I
> think they should be changed in the genericSql package to help futher
> "ports" to other DB's.
>
> 1) In CmsQueries I have overridden the C_RESOURCES_UNLOCK constant.
>
> Reason: An SQL statement of the form ...LOCKED_BY = -1WHERE
> PROJECT_ID... is
> treated as an error by DB2.
>
> Change: Added a space before WHERE. Instead of ...."WHERE
> PROJECT_ID... now
> " WHERE PROJECT_ID...
>
> C_RESOURCES_UNLOCK = "UPDATE " + C_DATABASE_PREFIX + "RESOURCES SET " +
> "LOCKED_BY = " + I_CmsConstants.C_UNKNOWN_ID + " WHERE PROJECT_ID = ?";
>
>
> 2) In CmsDbAccess I have overridden getTaskTypeCondition.
>
> Reason: In the Cms_Table, the field percentage is defined as
> varchar(50) but
> an SQL statement treats it as an integer. DB2 reports a type mismatch.
>
> Change: Added apostrophies (') around the 0 as follows:
>
> 		case C_TASKS_NEW: {
> 				result = result + m_cq.C_TASK_PERCENTAGE +
> "='0' AND .........
> 				break;
> 			}
>
> Note: In readTasks it is also treated as an Integer:
> recset.getInt(m_cq.C_TASK_PERCENTAGE) so I don't know if the DB
> datatype is
> wrong or the app's.
>
> Hope you can make use of this.
>
> Regards,
>
> Simon Wilks
> software engineer
> simon.wilks at silion.ch
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> silion (switzerland) ag    software engineering
> spinnereistrasse 8              9008 st. gallen
> tel 0878 80 90 60             fax 0878 80 90 30
> info at silion.ch                    www.silion.ch
>
> a member of the Penta Group   www.pentagroup.ch
>



More information about the opencms-dev mailing list