1
vote
0answers
462 views

java connection pool autocommit

I'm using for the first time the connection pool in java. The application that I'm writing is a web application deployed on oracle glassfish 3.1 and the resource connection pool is handled by it. I ...
0
votes
1answer
458 views

ASP.NET DropDownList + SQL Query not showing anything

I have 5 dropdown lists and am trying to make it so if I choose a certain value on a certain dropdown list, it won't show that specific item on the following dropdown lists. I am doing this through a ...
0
votes
0answers
42 views

How I built a SQL Database connectionstring right?

I have a problem with a connectionstring in a html file ... is this connectionstring form false? objConnection.Open "Provider=SQLOLEDB;Data ...
0
votes
1answer
2k views

asp.net login validation with database

i have login in my asp page req name/pass and button i create the conntionstring to my database and sqldatasource with the qurrey well here the sqldatasouce <asp:SqlDataSource ID="SqlDataSource1" ...
0
votes
0answers
355 views

How can I get sql server database name from DatabaseMetaData object

I am wondering how can I get the database instance name from DatabaseMetaData, or is there any way I can do that, kind of stuck here, thanks for any pointers! How to get sqlserver database name from ...
0
votes
1answer
189 views

Adding just Unique Data to Gridview

I have a table like this. Columns --> (MUSTERI, AVUKAT, HESAP (Unique)) My page design like this. Simply, first dropdown is MUSTERI, second dropdown is AVUKAT, when i click EKLE (it means ADD) ...
-1
votes
1answer
1k views

How to get sqlserver database name from datasource name in Java

As specified in the title, I want to get the database name in sqlserver, all info I know is datasource name, login name/password to get the Connection object, please show some pointers on how to ...