server « Database « Java Database Q&A





1. Toplink without application server    stackoverflow.com

Is it possible to use Toplink Essentials without application server, just on desktop application?

2. How to route to the nearest RMI Server?    stackoverflow.com

In continuation to my question How to improve the performance of client server architecture application I have decided to maintain a centralized database and several slave server-database configuration. I plan to ...

3. How Data Access Layer (and Database) which are in remote JVM (server) communicate with web app which is in local JVM?    stackoverflow.com

How Data Access Layer (and Database) which are in remote JVM (server) communicate with web app which is in local JVM?

4. Maintaining state in the application server or in the database?    stackoverflow.com

REST advocates web applications without client state on the server. The famous shopping cart example is translated to a resource which typically resides in a database. I wonder if it is a ...

5. Looking for FTP Server Java library    stackoverflow.com

I'm looking for Java FTP Server library, which lets to replace DAL with lets say a DB data. So far, i saw that in Apache FtpServer there is an option to ...

6. Any script for compiling Java server like apps into crossplatform executables?    stackoverflow.com

Possible Duplicate:
How do I create executable Java program?
Windows, mac, lin. I want to be capable of compiling my app consisting of HSQLDB (I ...

7. Do you use a solution for all server related stuff (Git repositories, mail, database, web services) or many solutions?    stackoverflow.com

I would like to solve all my problems with domain

  • place where I can store all my git repositories
  • place where I can deploy my Java, (python, php) applications
  • place where I have my ...

8. Java DB Client-server technology - centralized DB - How?    stackoverflow.com

I am a 3rd year student in Computer. I have a project this year. I have an internship in a company that does not specialize in computers, it manufactures medical supplies. My ...

9. Java time sync problems multiple time zone clients single database server    stackoverflow.com

Image the following scenario,

  1. You have 10 Java applications accessing a database server
  2. Each application servers have been running for some time, and the Java applications time are now few minutes apart
  3. 1 application ...





10. Java Database Server and Client    stackoverflow.com

I'm designing a server system for my school's Student Government Association. It will grab data from a database made in Microsoft Access (including a picture, name, position, phone number, email, etc.) ...

11. Java server application database options    stackoverflow.com

I'm in the planning phase of a java server application specified for my needs. Basically, the server needs to check a database with usernames and passwords and some specified values for ...

12. Advantage Database Local server with JDBC    stackoverflow.com

Hi I am trying to connect through JDBC on an Advantage local server. I have tested many connections strings, like for example: connection = DriverManager.getConnection(
...

13. EHCache not resume DB writing after server restart    stackoverflow.com

I am trying to implement write behind using ehcache. So far i am able to write to the database using putWithWriter. My requirement is: I get hits to my application. I need ...

14. Network communication between dedicated web and database server    stackoverflow.com

We're at the juncture (I can even say, right time) that we need to separate our database server apart from our application web server. This we arrived at after careful ...

15. server.xml:has to do anything with database access pools    bytes.com

I am unable run ready made textbook code about db pools...although mysql db file.sql run success... and run SELECT success... for pools is needed special mysql ds driver or config in ...

16. downloading database from server    coderanch.com





17. accessing database on server from a local machine as when required    coderanch.com

I know of 2 ways you could do this: 1.) You can write a java app that connects to a remote db as long as it's on the network. Just put the ip address of the server in the getConnection() method call: Class.forName("whatever.jdbc.MyDriver"); Connection con = DriverManager.getConnection("jdbc dbc://128.0.0.1/dbname"); Send over an SQL, get the result set and format it and save ...

18. newbie help: Database server    coderanch.com

Originally posted by mark stone: i have MS Access database installed on my windows 95 box. would it be ok to do jdbc programming with it ? are there any special steps needed ? the jdbc tutorial is with the Cloudscape database. would the tutorial be compatible with MS Access ? [ February 25, 2002: Message edited by: mark stone ] ...

20. Problem with DataBase or Server    coderanch.com

Hello my application (some jsp's and some java classes) is running in IPlanet i start a thread and its run method has to insert some 50,000 of records into the database. the operation is like this reading of data from xml files and insertion in the database.this is how i proceed --- first we have a connection pool , i acquire ...

21. Underscore and Hyphens in DB Name on Shared Server    coderanch.com

Since the database name is different in your environments, you can store the database name in a property file. (a file with name/value pairs) Your program can read the database name in at runtime. That way, you can used the same .class file and just change the database name when you go to the shared server or standalone environment.

22. Which OSS database servers support Unicode ?    coderanch.com

I'm using MySQL 4.1.11. As far as I know, you don't have to specify anything in the connection properties. It's the character set that you define for storing strings. I think the default for MySQL is latin1, but you can either set a server wide default at startup (in my.conf/my.ini), per database, per table, or per column. I have noticed some ...

23. Database servers    coderanch.com

24. Simulating Database Failover Server    coderanch.com

Hi all, I'm not sure if this is the right thread to post this topic, so please tell me if it's not. We are trying to implement a Database failover server (or a Database cluster server) using SQLServer 2000, but without a real clustering from the database server itself, because we have a problem regarding the real Database clustering. So we ...

25. Restart of database server    coderanch.com

Some servers would pick up the missing database immediately and start producing errors to the servers log file. This is usually the case if you use standard data sources such as in J2EE. Other servers (or if the database connection is hard-coded via JDBC calls in the application code) would only detect errors if database queries were issued while the database ...

26. newbie J2EE Database Server question    coderanch.com

28. Newbie Question: setting up server and DB    coderanch.com

I am totally new to servlets so I'm wondering if people could steer me to some good books or links on the subject. I've written some server side Python programs that interface with a mysql database, and also some java applications. Here is what I'd like to do, but don't know if it can be done for free or if the ...

29. Just Java book: What DB server is used for JDBC chapters?    coderanch.com

Hi Mikalai, Yes! Your induction is absolutely right. When I was developing the chapters on JDBC - Java Database Connectivity - I wanted to include real code, real examples that people could run with a real database. I gave some careful consideration to how to do that. I could have used Oracle as my example. It is the leading brand database, ...

30. Client to server fileupload using commons into database - beginner    coderanch.com

The problem: I wrote code using commons fileupload in a servlet which worked until I moved the code into production causing the file path(from client browser) to not exist(on sever). Doh. So, I posted a message on here asking for some help and someone stated I should use the file input stream. I have been reading and searching so many articles, ...

32. Application Server and DB    coderanch.com

It's General Question..and I don't know whether it is posted in right topic. I am planning to do a mini project with Servlets, JSP, EJB and using design patterns. Through this project I want to get familarize with servlets, jsp , ejb and also design pattern. To begin my mini project, my first search is on the application server. Which application ...

33. multiple db servers for one app    coderanch.com

hi im looking for a point in the right direction. i would like to setup 1 mysql db server for user account data with pointers to X other db mysql servers with data split into 1TB dbs. the reason for this is that all logged in users will access all data depending on share permissions. i was looking at partitioning in ...

34. DataBase Server ping    coderanch.com

37. How to check different Database server competibility in java code    coderanch.com

Java is compatible with all database like Oracle ,SQL ,MYSQl and many more it is just the way the connection object is to be created. The API for different Database differ so you have to download a specific API jar like classs12.jar for Oracle and keep the jar in the class path

38. Uploading an image to a server or to database?    coderanch.com

Hi All, I am trying to implement the profile page for the user of the web application. I want the user to be able to upload the image for their profile. My question is that how should this be implemented? Should I upload the image in the database as a blob, or shall I upload the image in the server and ...

39. Free Java embedded database servers    dbforums.com

What options might be applicable for a non-open source (commercial) program that is to be distributed to many people with an embedded database? MySQL proves too expensive, and I'm sure other commercial ones are as well. The databases would only have one or a few concurrent users (as they'd be individual to the user), but would need to be able to ...

40. database server??    java-forums.org

I assume you want to design scemas for tables within a database that is supported by a pre-developed RDMBS package. If that is a good assumption, then download MySql. MySQL :: The world's most popular open source database Its open source, free, robust, well supported, etc. Use JDBC to connect your Java code to the MySql database engine, after you have ...

41. Hosting a DB server    java-forums.org

So I've been playing around with DB's and I had a few questions that I couldn't get the right answer from google. What is the difference between a relational database management system and relational model database server,(I'm looking at MySql and Microsoft SQL Server 2008) So I just wanted to try and host a database from my home computer and access ...

42. Client to server fileupload using commons into database - beginner    forums.oracle.com

2.) If the previous statement is true - then would I not want to process the fileupload in a servlet at all? Or, even how can I resolve the actual path to use. Is this even possible? This just confuses me. I think I have the right code to upload the file and save it as a binary blob in the ...

43. Database Servers list    forums.oracle.com

I need this class to be able to connect with the specified table using the given user name and password and the database server name that was supplied as a parameter to the constructor of the class. So can you please tell me the code snippet to connect to the database using the given user name, password and the server name. ...

44. how to access remote database server    forums.oracle.com

45. How to put website "server name" which is not kept in db to an object    forums.oracle.com

Hi Jammy@java, Thank you very much for your replay. It helps!! I'm sorry to reply you late becuase I was checking class InetAddress you mentioned in your email to see if I can get port number too, but I didn't see it in the class. Could you tell me how to get port number for a website too please? Also, I ...

46. Can I use JAva DB on a server??    forums.oracle.com

47. Simple database server    forums.oracle.com

For school i need to develop an application. Can anyone help me with a simple database server? I want to read data from my database. Database: a simple employers table I want to request for example all employers firstname. How can i build the server? How can i make the connection with the database? Are there tutorials or examples? Please help. ...

48. Java client server with database    forums.oracle.com

Hi, I'm new here. I was wondering if someone can give me some help with Java client/server applications with database. I've done an application but it keeps giving me many errors and the problem seems to be in the connection with the sql server database. Can someone give me a simple application code for Java client/server application with database. Thanks in ...

49. how can I export database from another server    forums.oracle.com

Hi, I wanna export oracle DB on DB server from apps server that there's no oracle installed. How can I run exp (command) from apps server??? I wanna run it by java application using runtime execution. please help me!! my apps server use OC4J. Thanks Kahlil Edited by: kahlil on Feb 13, 2009 7:59 AM

50. runtime call to database server !    forums.oracle.com

51. Using Java DB on a server    forums.oracle.com

52. check DB server status    forums.oracle.com

A clent server java application is connected to a DB server, the problem is every 10 mins i have to check the status of the DB server is up or down if its up nothing to do if its down i have to send a msg box saying the server is down.Anyone help