Tagged Questions
0
votes
0answers
25 views
MSSQL any way to retrieve the PRINT statement output from a stored procedure with JDBC
With the MSSQL driver, is there any way to retrieve the PRINT statement output from a stored procedure with JDBC?
0
votes
2answers
36 views
SQL server 2008: read data till end of data in row
Is there any way to read data from sql table...which read only number of value required (from all coloumns) using java language
like example,
id arg1 arg2 arg3
1 maxx 123 ...
0
votes
1answer
28 views
NullPointer exception when executing prepared statement
im trying to use the below piece of code to insert in temp table and select it...when I run it, I get a NullPointer exception...Not sure what is the problem..the same runs well with mysql driver..Im ...
0
votes
1answer
34 views
The conversion from UNKNOWN to UNKNOWN is unsupported
I get the following exception running a stored procedure:
com.microsoft.sqlserver.jdbc.SQLServerException: The conversion from UNKNOWN to UNKNOWN is unsupported.
The procedure is defined like this:
...
1
vote
1answer
23 views
Exception: Operating System error code 3
I am doing text file bulk upload in SQL Server. Whenever i tries to upload the files, gets Following Exception:
[Microsoft] [ODBC SQL Server Driver] [SQL Server]Could not bulk insert
because ...
0
votes
0answers
37 views
How long is the Application-Scope valid in JSP?
I'm using JSP for a Project and cache all the records from the database which are visible and editable for every user. For this purpose I use a Bean and set the scope to "application".
Its ...
0
votes
2answers
8 views
Putting timestamp on the data fetched from remote sqlserver to local mysql
I am pulling data from remote sqlserver to local mysql server using jdbc .
In remote sqlserver server I have 2 columns
Name Count
In local mysql I have 3 columns made
Name Count Time_stamp
...
-1
votes
2answers
56 views
Creating an Android Application with QR Code Scanner [closed]
Good day to everyone!
I am new to android development and I would like to create an application that has a QR Code Scanner in it.
Basically, the android application that I am about to do will be ...
0
votes
1answer
30 views
Java.sql.sqlexception: The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value
When I am updating my Date Field the update does not works from NetBeans and Below exception is raised
Java.sql.sqlexception: The conversion of a char data type to a datetime data type resulted in ...
0
votes
0answers
12 views
JAVA MS SQL server receving multiple data and sending data to client (weather boxes mini project)
my new project is to build n weather boxes,
they all read the following data: temperature, pressure, humidity, wind speed, light-scale, and other 20 sensors… These data will be sent to a remote ...
0
votes
0answers
25 views
HIbernatejava.sql.SQLException: Connection ConnectionID:4 is closed
I am using Struts 1.2 - Hibernate 3 - MS Sql server 2005 for my application.
When I run the application, its working fine in local but in server I am getting below exception:
...
0
votes
1answer
27 views
SQL Server authentication using domain account from Java [duplicate]
I am working on a Java project that runs on Linux/WebLogic that needs to integrate with an existing SQL Server instance that only allows authentication through a windows domain account. I've seen .Net ...
0
votes
1answer
14 views
Jboss background validation
Our application had been using ping based approach where in before each query is executed.validation query is fired to check whether the connection is live or not. DataSource config for the same is as ...
0
votes
0answers
14 views
Pulling the data from remote sql server to local sql server at fixed interval
import java.sql.*;
public class jdbc {
public static void main(String[] args)
{
try {
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
...
0
votes
2answers
31 views
No persistence provider WHEN exporting jar file
I have a maven desktop project that uses JPA as persistent layer; this layer deals with one MySQL database and one SQL Server database.
When I run it inside Eclipse, there is no problema; but when I ...