Wrox Programmer Forums
|
ASP.NET 2.0 Professional If you are an experienced ASP.NET programmer, this is the forum for your 2.0 questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Professional section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 25th, 2007, 06:28 AM
Authorized User
 
Join Date: Jan 2007
Posts: 93
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to aliirfan84
Default Image saving problem OLEDB

I m trying to save image using following code in Oracle:

clsoperation objTrans = new clsoperation();
// clsdbhims objdbhims = new clsdbhims();

            try
            {
                OleDbConnection objCon = new OleDbConnection();
                objCon.ConnectionString = "Provider=MSDAORA; User ID = tauqeer ;Data Source=HIMS; Password=tauqeer;";
                objCon.Open();

                OleDbCommand insert = new OleDbCommand("insert into images([image]) values(?)",objCon );
                OleDbParameter imageparm = insert.Parameters.Add("@image",OleDbType.Binary);
                imageparm.Value = imge;
                imageparm.Size = imge.Length;
                insert.ExecuteNonQuery();
            }
            catch(Exception ex)
            {
                return ex.Message;
            }
            return "OK";


This code throws an exception:

"ORA-00928 missing Select keyword"

Please do help to slove this issue or give an alternate.



__________________
Regards,
Ali Irfan





Similar Threads
Thread Thread Starter Forum Replies Last Post
Image Editing and Saving aliirfan84 ASP.NET 2.0 Professional 2 May 28th, 2007 12:12 AM
Retrieving image from sql and saving to disk otsthebus Classic ASP Basics 1 August 5th, 2006 01:51 AM
saving image from webcam kvanchi General .NET 0 April 8th, 2005 01:49 AM
Saving image in SQL Server 2000 ashu_from_india ADO.NET 0 February 21st, 2005 01:10 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.