• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Installation of r4 - straight from cvs

 
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
class not found: ManagementFactory

with a nice thread deadlock too

Uhm - could you please tell me where to get a WORKING source information to do some work on the sql server interface / queries?

We have to deploy the current version on SQL Server 2000 ... so please let me know how to do this.

The "limit" thign might be done with either stored procedures or by using nested "top" statements - according to MS ... ^^
[originally posted on jforum.net by Sid]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
updateMessageID() not found in super class - in class IdentifiableMimeMessage.java ...

This is even in the r3 sources - the official release. ^^
[originally posted on jforum.net by Sid]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You want to check out the B_2_1_7 branch from CVS. This is the current distribution source plus a couple of minor patches that haven't been released.

Alternatively, you can get the exact source for the distribution via the "Details" section in the Release 2.1.7 box.
[originally posted on jforum.net by monroe]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thanks - I just updated my checkedout project.... let's see if it now is able to deploy proberly. So far i worked on the r3 official release source ...

I may have found a syntax to get sql server 2000 run with limit features ...

UserModel.selectAllByLimit = SELECT * \
FROM ( SELECT TOP [1] * \
FROM ( SELECT TOP [2] \
user_email, user_id, user_posts, user_regdate, username, deleted, user_karma, user_from, user_website, user_viewemail \
FROM jforum_users as tmp1 order by username ASC) as tmp2 \
order by username DESC) as tmp3 \
order by username ASC

though I wonder why it's sorted by username, as in the admin panel it's sorted by user_id ... but that's just aminor change.

The [1] and[2] will be replaced in the DAO class by "count" and "(count + startFrom)"

At least it did not throw any exceptions so far ^^

Similiar syntax goes for the other ByLimit SQL statements...
[originally posted on jforum.net by Sid]
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic