Search 5,000,000+ questions and answers.

Frequently Asked Questions

Can you translate and compile .sqlj programs online?

Oracle Sqlj Frequently Asked Questions
See also "Cannot load JDBC driver class oracle.jdbc.driver.OracleDriver", "Warning: Cannot determine default arguments for stored procedures and functions. May need to install SYS.SQLJUTL.".
Related Questions

What software components are required to translate a SQLJ application? to run a SQLJ application?

Oracle Sqlj Frequently Asked Questions
one of the runtime files runtime.zip (any JDK, any JDBC driver), runtime11.zip (for JDK 1.1.x, JDBC 8.1.7), or runtime12.zip (for JDK 1.2, JDBC 8.1.7) which can typically be found in [ORACLE_HOME]/sqlj/lib) on your system and in your CLASSPATH For online checking, the JDBC driver classes???classes111.zip for JDK 1.1.x or classes12.zip for JDK 1.
Related Questions

Can Debian be used to compile libc5 programs?

The Debian GNU/Linux FAQ - Debian??LFS??Gentoo?????? - Linux...
Yes. Install libc5-altdev and altgcc packages (from the oldlibs section). You can find the appropriate libc5-compiled gcc and g++ in directory /usr/i486-linuxlibc1/bin. Put them in your $PATH variable to get make and other programs to execute these first.
Related Questions

Why can't I compile programs that require libtermcap?

The Debian GNU/Linux FAQ - Debian??LFS??Gentoo?????? - Linux...
Debian uses the terminfo database and the ncurses library of terminal interface routes, rather than the termcap database and the termcap library. Users who are compiling programs that require some knowledge of the terminal interface should replace references to libtermcap with references to libncurses. To support binaries that have already been linked with the termcap library, and for which you do not have the source, Debian provides a package called termcap-compat.
Related Questions

How Do I Compile Programs?

Porting, Compiling and Obtaining Programs
Most Linux software is written in C and compiled with the GNU C compiler. GCC is a part of every Linux distribution. The latest compiler version, documentation, and patches are on ftp://ftp.gnu.org/pub/gnu/. Programs that are written in C++ must be compiled with the GNU G++ compiler, which is also included in Linux distributions and available from the same place as GCC. To build version 2.0.x kernels, you will need GCC version 2.7.2.x, approximately.
Related Questions

Java FAQ
Simply open an MS DOS Window, change to the directory where your files are stored, and type: javac MyProgram.java Note, this assumes that javac is in your system path. See the question on accessing Java from the command line above for how to set this.
Related Questions

Software Development
Most Linux software is written in C and compiled with the GNU C compiler. GCC is a part of every Linux distribution. The latest compiler version, documentation, and patches are on ftp://ftp.gnu.org/pub/gnu/. Programs that are written in C++ must be compiled with the GNU G++ compiler, which is also included in Linux distributions and available from the same place as GCC. To build version 2.0.x kernels, you will need GCC version 2.7.2.x, approximately.
Related Questions

COBOL FAQ
It is assumed you have installed cobol650.zip in the directory C:\COBOL650. In install.doc you will find some information on running the compiler. The install.doc contained in cobol650.zip refers to a program DPATH.COM to be run instead of APPEND. The DOS program APPEND seems to work too. When trying to compile sources in a directory other than that where the compiler is installed, the compiler terminates without an error. This restriction is not documented in install.
Related Questions

Why can't I get my Fortran programs to compile with PAPI on a Cray T3E?

Frequently Asked Questions
The Fortran header file you include has to be preprocessed before the Fortran file can use it. To have the cpp process the file before sending the file to the compiler, add the -F flag. For example:
Related Questions

Is there is a tool to compile programs on a PC?

FAQs numbers 70 to 79
Answer: See question #69 for information on sRPL if you mean assembly code. However if you mean a tool for use with the built in HP-Basic language then although you may use the PC to write them (text editing) you don't actually compile them on the PC - you download them to the calculator and let it compile them. If you want to compose them on the PC then you have to use the ADK (Aplet Development Kit).
Related Questions

How do I compile programs that use GStreamer ?

Developing applications with GStreamer
GStreamer uses pkg-config to assist applications with compilationa and linking flags. pkg-config is already used by GTK+, GNOME, SDL, and others; so if you are familiar with using it for any of those, you're set. If you're not familiar with pkg-config to compile and link a small one-file program, pass the --cflags and --libs arguments to pkg-config. For example: $ libtool --mode=link gcc 'pkg-config --cflags --libs gstreamer-0.10' -o myprog myprog.
Related Questions

How do I compile programs with uClibc?

uClibc
You will need to have your own uClibc toolchain. A toolchain consists of GNU binutils, the gcc compiler, and uClibc, all built to produce binaries for your target system linked with uClibc. You can build your own native uClibc toolchain using the uClibc buildroot system. run 'unset CC'. Then run 'unset CXX'. Some Linux systems (i.e. Gentoo) set variables such as 'CC' in the system environment which really messes things up when cross compiling. Select the things you want to build.
Related Questions

Can I develop and debug SQLJ programs with Oracle JDeveloper?

Oracle Sqlj Frequently Asked Questions
Developing: Creating SQLJ code in JDeveloper is no different than creating Java code. SQLJ files (.sqlj) can be included in your projects as well as Java files (.java). Compiling: When you compile a SQLJ source file (identified by the .sqlj file extension), the Oracle SQLJ translator and Oracle profile customizer are automatically invoked. Prior to compiling, you can use JDeveloper to set some of the SQLJ command-line translation options.
Related Questions

Is there a way to speed up translation of a .sqlj file with online checking enabled?

Oracle Sqlj Frequently Asked Questions
Why was the profile-key class not generated? 3. Problems Deploying and Running SQLJ Applications and Applets ORA-01000 when processing REF CURSORS on the client 3.2 Deploying and Running in the Oracle Server JavaVM Performance of Java and SQLJ in Stored Procedures java.security.AccessControlException: the Permission (java.net.SocketPermission) has not been granted" 3.3 Using REF Cursors Error: class cannot be constructed as an iterator: classname
Related Questions

Where can I find programs that will translate from [some language] to Ada?

Ada FAQ: Programming with Ada
It is generally advisable to simply interface from Ada to the existing code segments that (should) already work. Note that Ada (95) now has an annex devoted to specifying how to interface with code written in other programming languages (C, Fotran, and Cobol), and there are already interfaces to C++ too. Another option is to redesign the code, taking of course advantage of one's knowledge of the current system.
Related Questions

How can I use ajc to compile programs for a JVM that is different from the one used to run it?

AspectJ Frequently Asked Questions
ajc can be used to develop programs that are targeted at the Java 1.1 platform, even though the ajc compiler won't run on that platform. Here's an example of using ajc in this sort of cross-compilation mode (assuming a Windows platform with all the default installation directories): ajc -target 1.1 -bootclasspath c:\jdk1.1.7\lib\classes.zip \ -classpath c:\aspectj1.0\lib\aspectjrt.jar -extdirs "" \ -argfile jdk11system.lst This same technique can be used if you want to run ajc on a JDK 1.
Related Questions

What do I need to compile and run OpenGL programs?

OpenGL FAQ / 2 Getting Started
To compile and link OpenGL programs, you'll need OpenGL header files and libraries. To run OpenGL programs you may need shared or dynamically loaded OpenGL libraries, or a vendor-specific OpenGL Installable Client Driver (ICD) specific to your device. Also, you may need include files and libraries for the GLU and GLUT libraries. Where you get these files and libraries will depend on which OpenGL system platform you're using.
Related Questions

Why do Kogut and other Kogut programs take so long to compile?

The Kogut FAQ
The generated C programs made by Kogut are rather large, and this is not likely to change in the future. In fact, as further optimizations such as inlining are implemented, the output files will probably be even larger. But don't worry; this makes things much more efficient.
Related Questions

Do you offer any online programs?

Some clinics will print out cheap photocopies of exercises and give them to you. Any exercise program we prescribe for you will be professionally formatted with high quality photography. In addition, you will be emailed a link to your individual exercise web page, where you can view your exercise being performed in real time via streaming video from our website. If you ever forget how to perform a particular exercise, it's no problem, just go back to your individual exercise page to review.
Related Questions

Where can I find more information about online programs and distance education?

FAQ - USM
The University of Maryland University College is a pioneer in online education and offers more than 20 complete degree programs available online. For more information, check out their Orientation to Distance Education. In addition, the University of Baltimore offers the webMBA -- a complete MBA program online. Find out more about the webMBA and UB's other online programs at UBOnline. Visit Information Central, a service of the Maryland Cooperative Extension.
Related Questions

What programs are available online?

www.msugf.edu | MSU-Great Falls College of Technology - Abou...
Medical Transcription Certificate of Applied Science, Health Information Coding Certificate, Medical Billing and *Associate of Applied Science degrees in Health Information Technology and Medical Transcription are offered online as well as many prerequisite courses for other programs and general education core classes for transfer to another college or university. The Computer Technology AAS degree is 90% online with a few key courses offered on campus.
Related Questions

Online-Rewards
Programs are designed to operate both online and offline. The online systems acts as the core program management platform. Telephone (Interactive Voice Response) tools can be readily integrated into the program. Help desk phone support is also available. Online-Rewards offers integrated communication capabilities including HTML email distribution as well as internal program messaging.
Related Questions

Is SQLJ Y2K-compliant?

Oracle Sqlj Frequently Asked Questions
Yes, both the SQLJ translator and the SQLJ runtime are Y2K-compliant, presuming your Java environment is Y2K-compliant.
Related Questions

What can you translate?

Chambers International : Your Global Communications Partner
WE TRANSLATE from practically any electronic or printed format, including the following: Word®, PowerPoint®, Excel®, Publisher®, QuarkXpress®, Illustrator®, PageMaker®, TXT, HTML, PHP, ASP, etc.
Related Questions

Can anyone translate?

Marcos Business Services - FAQ
Confucius once said "If language is not correct, then what is said is not what is meant; if what is said is not what is meant, then what ought to be done remains undone". Somebody might say: You just look up the words in the dictionary and replace those written in language X with their equivalents in language Y. Well, not quite. Aside from the differences in grammar, syntax, word order, and idioms, relatively few words have one-to-one equivalents in two different languages.
Related Questions

Frequently Asked Questions
My rates are dependent on the complexity and content of the material and the schedule. Rates start at $10 US per page. Please note I do not translate doujinshi or work on any material which is not authorized by the content owner such as fansubs, fandubs, scanlations, etc.
Related Questions

Got A Question? Ask Our Community!


More Questions >>

© Copyright 2007-2008 QueryCAT
About • Webmasters • Contact