Hi colin Thanks fr your time , i did go thru some sites, actually i don't know cobol at all and i am looking for code logic to access sql databse from cobol and how different it is from access any dbms i am not able to spot any good code refernce i have checked out cobug-cobol users group and some other sites, i need a basic idea that is all Regards Bhagirathi
A R Bhagirathi
Posts
-
COBOL AND MS SQL -
COBOL AND MS SQLHi all I need to get some information on how cobol handles database? and how can we access the MS SQL Database from ACUCOBOL? I would really appreciate if any body can forward links on this topic, Bhagirathi
-
Run time ErrorHi Try this URL it discuss the same problem u r facing and they have the solution http://www.velocityreviews.com/forums/t71777-quoterror-while-trying-to-run-project-unable-to-start-debugging-on-the-web-serverquot.html
-
Open a PDF filehi you can try this : convert the file into byte array,set the Response.ContentType to application/pdf and do a binary write Sample code: string filePath=Request.MapPath("a.pdf"); System.IO.FileInfo ofile=new FileInfo(filePath); System.IO.FileStream fs = ofile.OpenRead(); int filelen=(int)fs.Length; byte[] b=new byte[filelen]; fs.Read(b,0,filelen); Response.ClearHeaders(); Response.ClearContent(); Response.ContentType="application/pdf"; Response.BinaryWrite(b); Response.End(); Response.Flush();
-
problem in creating runtime controlshi i could set pranent property in windows application, failed in asp.net sorry did not check out ealier, right method panel1.controls.add
-
problem in creating runtime controlsHi To create controls in the pannel : set the parent property of the control to the pannell that you have created; eg TextBox txtNew = new TextBox(); panel1.Contains(txtNew); txtNew.Parent=panel1; hope this is helpful