Click here to Skip to main content
15,890,438 members
Home / Discussions / Database
   

Database

 
GeneralRe: Convertings Tags to Attributes Pin
Robert Rohde12-Jun-05 3:22
Robert Rohde12-Jun-05 3:22 
Generalsql Pin
rohollahabadan8-Jun-05 21:21
rohollahabadan8-Jun-05 21:21 
GeneralRe: sql Pin
Colin Angus Mackay9-Jun-05 1:10
Colin Angus Mackay9-Jun-05 1:10 
GeneralRe: sql Pin
Vasudevan Deepak Kumar11-Jun-05 2:51
Vasudevan Deepak Kumar11-Jun-05 2:51 
GeneralWorking with stored procedure´s transactions in .NET Pin
riv_luis8-Jun-05 10:00
riv_luis8-Jun-05 10:00 
GeneralRe: Working with stored procedure´s transactions in .NET Pin
Colin Angus Mackay8-Jun-05 10:31
Colin Angus Mackay8-Jun-05 10:31 
GeneralRe: Working with stored procedure´s transactions in .NET Pin
riv_luis9-Jun-05 2:17
riv_luis9-Jun-05 2:17 
GeneralWeb Services Pin
RSootarsing8-Jun-05 2:59
RSootarsing8-Jun-05 2:59 
Hi I have written a basic Webservice that returns values from a Dataset here is a code snippit
[WebMethod]
public DataSet CTX (string filter)
{
try
{
iDB2Connection connDB2=new iDB2Connection{
"DataSource=TDC01;" +
"userid=user;password=pass;DefaultCollection=collection;");
DataSet ds = new DataSet();
iDB2DataAdapter adpt = new iDB2DataAdapter();
string szSQLstmt = "Select * from table where REF='" +@filter+"'";
adpt.SelectCommand = new iDB2Command(szSQLstmt,connDB2);
adpt.Fill(ds);
return ds;
}
This works fine when i test it in ie returns the data in xml however what i want to be able to do is use this in Biztalk however biztalk can only see the root node <dataset> and nothing else can anyone offer me any advice of how to solve this problem.
Thanks in advance
Rohan
GeneralRe: Web Services Pin
Colin Angus Mackay8-Jun-05 6:45
Colin Angus Mackay8-Jun-05 6:45 
Generalsp with temptables doesnt work in crystal reports Pin
7-Jun-05 23:41
suss7-Jun-05 23:41 
GeneralRe: sp with temptables doesnt work in crystal reports Pin
WoutL8-Jun-05 20:58
WoutL8-Jun-05 20:58 
GeneralRe: sp with temptables doesnt work in crystal reports Pin
Geethalakshmi8-Jun-05 21:15
Geethalakshmi8-Jun-05 21:15 
Generalsecurity in SQL server Pin
daneshmand7-Jun-05 23:11
daneshmand7-Jun-05 23:11 
GeneralRe: security in SQL server Pin
Colin Angus Mackay8-Jun-05 0:13
Colin Angus Mackay8-Jun-05 0:13 
Generalweb service based Pin
ahmad mostafa7-Jun-05 22:43
ahmad mostafa7-Jun-05 22:43 
GeneralRe: web service based Pin
Colin Angus Mackay8-Jun-05 0:22
Colin Angus Mackay8-Jun-05 0:22 
GeneralRe: web service based Pin
ahmad mostafa8-Jun-05 0:30
ahmad mostafa8-Jun-05 0:30 
GeneralRe: web service based Pin
Colin Angus Mackay8-Jun-05 1:08
Colin Angus Mackay8-Jun-05 1:08 
Generalamount of record can entered in each record Pin
daneshmand7-Jun-05 22:35
daneshmand7-Jun-05 22:35 
GeneralRe: amount of record can entered in each record Pin
Colin Angus Mackay8-Jun-05 0:20
Colin Angus Mackay8-Jun-05 0:20 
GeneralError when install sql server sp4 Pin
Mekong River7-Jun-05 12:52
Mekong River7-Jun-05 12:52 
GeneralRe: Error when install sql server sp4 Pin
Vasudevan Deepak Kumar11-Jun-05 2:59
Vasudevan Deepak Kumar11-Jun-05 2:59 
GeneralRe: Error when install sql server sp4 Pin
Mekong River11-Jun-05 5:46
Mekong River11-Jun-05 5:46 
GeneralSQL Server 2005: CREATE ASSEMBLY : Error 6218 Pin
Duncan Edwards Jones7-Jun-05 10:43
professionalDuncan Edwards Jones7-Jun-05 10:43 
GeneralRelation Between Databases Pin
Majid Shahabfar7-Jun-05 3:00
Majid Shahabfar7-Jun-05 3:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.