I am doing a project in java that uses oracle database. I built the application (using NetBeans IDE) and can connect to my Oracle database (locally). I shared my application files to my friends. They can't connect to my database. What setting do I have to change (considering both Oracle and NetBeans) so that my friends can connect to my database.
Thanks in advance.
Related
Does WEBUTIL.PLL need to be compiled for each database on the Oracle WebLogic: Oracle Forms and Reports 12.2.1.4 server? Most of the applications reside on database: X, however this particular application: application7 resides on database: Y.
Does WEBUTIL.PLL (along with JARSIGNER) need to be compiled for each database used on the Oracle WebLogic: Oracle Forms and Reports 12.2.1.4 server?
Thank you!
Unclear what you are asking. The webutil.pll file must be generated into webutil.plx in order to be usable at runtime. That PLX file must be generated on the machine where the middletier software is installed and will be run.
Regarding "jarsigner", this is a Java utility with the JDK and not something you need to nor should you alter.
Wonder if this can be achieved. Install Oracle APEX onto a Linux VM and have Oracle DB residing on a separate server to point to it. Is it possible to install Oracle APEX without Oracle currently installed on the same box? Can't find any documentation on the Oracle site for this setup.
No. Application Express (APEX) runs out of the database itself. APEX is a collection of PL/SQL packages and tables.
Now the web tier could most definitely be moved to another machine (linux even). That would be something like Oracle REST Data Services and Apache Tomcat.
I am trying to setup a temporary unit test database that has DB2 style syntax. I know Derby fills this role quite nicely on our Java applications.
I have done much searching, and I have seen that you can use the JDBC DB2 driver to connect to Derby - which is cool, except it doesn't seem as true for the ODBC DB2 (or OLEDB) driver allowing a connection to Derby.
I also saw that Cloudscape had a version but following the download instructions, there is a redirect page that states:
There is no replacement for the old Cloudscape ODBC driver in IBM's world. Does anyone know of another source where I can get it? Or another way of connecting to Derby from VB6 (or of creating an ADODB.Connection in VB.net to Derby).
I suppose I would settle for an old version of Derby that the you can connect with (an old) DB2 ODBC driver.
I'm intermediate PHP ,MySQL developer,currently, I'm building a warehouse application using MySQL with InnoDB engine and using PHP,I notice it's too annoying and slow to handle many languages at the same time(PHP,MySQL,HTML,CSS),then after googling I found (Oracle Application Express),it's sounds nice to me that I build my application and focusing on one programming language Oracle and leave the forms etc to the Oracle Application Express.so is it possible to build a warehouse management system with Oracle Application Express and Oracle 11g ? I'm good with SQL and I can learn Oracle very fast,please guys share you experience with me.
Thanks in advance everyone.
you can access pl sql from apex applications and apex itself generate a web frontend.
yes you can also create a login page and the separate pages cann be secured by user specific access rights
I'm developing an ASP.NET WebForms application with Entity Framework Database-First connected with SQL Server, and I want to connect the same Entity Data Model with Oracle Database.
My concerns are:
How to install Oracle Database Engine on my dev machine to test?
How to connect the data model with Oracle instead of SQL Server?
How to generate the same schema into Oracle?
Are there drivers, tools, or apps I need to install?
I am doing exactly the same as you
i.e. Converting a ASP.NET MVC application on SQL server to Oracle.
Since your application is already running, what you can do, is
generate create scripts from your SQL Server database,
create the same tables in Oracle.
Install ODP.NET from
here.
This will allow you to connect to Oracle from a .NET application.
Now create a new edmx file from the tables in Oracle and if you do
everything properly, your application should be running.
Note: ODP.NET provider is only visible if you have a VS license. It is not visible on the free version.