• 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

JSQLParser

 
Ranch Hand
Posts: 59
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear all,

I downloaded JSQLParser.jar and put it in the lib folder of my project in the IDE.
After unpacking the jar, I can see the source files in the explorer. Thats fine.
But as I navigate through folders into the src-package in my IDE I can not find any java class, thus I can not use this jar in my code... Very strange.
By the way: The manifest looks pretty nacked:
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.7.0
Created-By: 11.0-b15 (Sun Microsystems Inc.)

Any suggestions how to call and instantiate classes from JSQLParser?

Regards,
Yusuf

PS: Sorry for inconvenience if this topic ist not in the right place here.
 
Sheriff
Posts: 22783
131
Eclipse IDE Spring VI Editor Chrome Java Windows
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You downloaded the jsqlparser-0.7.0.jar file, right? That's a JAR file alright, but it's not an executable JAR or a library JAR. It's actually little more than a regular ZIP file.

You should unpack this file, then check the jsqlparser\lib folder. The actual library JAR is located there.
 
yusuf Kaplan
Ranch Hand
Posts: 59
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Rob Spoor wrote:You downloaded the jsqlparser-0.7.0.jar file, right? That's a JAR file alright, but it's not an executable JAR or a library JAR. It's actually little more than a regular ZIP file.

You should unpack this file, then check the jsqlparser\lib folder. The actual library JAR is located there.



True. Where or how do you know that ?
 
Rob Spoor
Sheriff
Posts: 22783
131
Eclipse IDE Spring VI Editor Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Because I downloaded that same file from SourceForge just before posting that reply
 
yusuf Kaplan
Ranch Hand
Posts: 59
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Rob Spoor wrote:Because I downloaded that same file from SourceForge just before posting that reply


Ok
 
Greenhorn
Posts: 24
Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Found this thread helpful
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic