Click here to Skip to main content
16,008,183 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Help Regarding Propertygrid Pin
xstoneheartx1-Feb-07 23:06
xstoneheartx1-Feb-07 23:06 
AnswerRe: Help Regarding Propertygrid Pin
sandipan.neogi@gmail.com1-Feb-07 23:33
sandipan.neogi@gmail.com1-Feb-07 23:33 
QuestionText box Pin
rrrriiizz1-Feb-07 22:18
rrrriiizz1-Feb-07 22:18 
AnswerRe: Text box Pin
xstoneheartx1-Feb-07 22:37
xstoneheartx1-Feb-07 22:37 
AnswerRe: Text box Pin
Syed Ali Raza2-Feb-07 1:18
Syed Ali Raza2-Feb-07 1:18 
AnswerRe: Text box Pin
Johan Hakkesteegt2-Feb-07 3:23
Johan Hakkesteegt2-Feb-07 3:23 
GeneralRe: Text box Pin
rrrriiizz2-Feb-07 17:25
rrrriiizz2-Feb-07 17:25 
QuestionHow to Insert data from Blob field to Oracle Database Pin
Syed Ali Raza1-Feb-07 19:22
Syed Ali Raza1-Feb-07 19:22 
Hi;
I m using VB.net. I have inserted the data in SQLSERVER in this form but having this error while trying in Oracle. Im using class for connection

"ORA-01036, Illegal Name/Variable "

this is the Code I m using.

Dim LclsGeneral As New GClsGeneral
Dim fs As FileStream = New FileStream(txtContent.Text, FileMode.Open, FileAccess.Read)
Dim img(fs.Length) As Byte
fs.Read(img, 0, System.Convert.ToInt32(fs.Length))

Dim conn As New OracleClient.OracleConnection
Dim LClscnn As New GClsConnection
conn.ConnectionString = LClscnn.GetConnectionString
If conn.State = ConnectionState.Closed Then conn.Open()
Dim Lcmd As New OracleClient.OracleCommand
Lcmd.Connection = conn
Lcmd.CommandText = "Insert into Test (DOCUMENTID,DOCUMENTCONTENT) VALUES ('" & txtID.Text & "',@DOCUMENTCONTENT)"
Lcmd.Parameters.Add("@DOCUMENTCONTENT", OracleClient.OracleType.Blob,img.Length).Value = img
Lcmd.ExecuteNonQuery()
fs.Close()
txtID.Text = ""
txtContent.Text = ""

Kindly help me
Thank you
QuestionHow to do the video on demand on winxp? Pin
Teeyai1-Feb-07 19:16
Teeyai1-Feb-07 19:16 
Questionhow to insert undeletable image in word document Pin
Kumar Arun1-Feb-07 19:14
Kumar Arun1-Feb-07 19:14 
AnswerRe: how to insert undeletable image in word document Pin
Christian Graus1-Feb-07 19:42
protectorChristian Graus1-Feb-07 19:42 
GeneralRe: how to insert undeletable image in word document Pin
Kumar Arun1-Feb-07 23:08
Kumar Arun1-Feb-07 23:08 
QuestionFind Version of a program (excel) installed Pin
dpagka1-Feb-07 19:09
dpagka1-Feb-07 19:09 
AnswerRe: Find Version of a program (excel) installed Pin
nobel@tele.gl1-Feb-07 22:12
nobel@tele.gl1-Feb-07 22:12 
AnswerRe: Find Version of a program (excel) installed Pin
vishal dhir2-Feb-07 9:06
vishal dhir2-Feb-07 9:06 
QuestionVB.Net ConnectionString Problem Pin
somagunasekaran1-Feb-07 17:44
somagunasekaran1-Feb-07 17:44 
AnswerRe: VB.Net ConnectionString Problem Pin
Christian Graus1-Feb-07 18:15
protectorChristian Graus1-Feb-07 18:15 
GeneralRe: VB.Net ConnectionString Problem Pin
somagunasekaran1-Feb-07 18:35
somagunasekaran1-Feb-07 18:35 
GeneralRe: VB.Net ConnectionString Problem Pin
Christian Graus1-Feb-07 18:50
protectorChristian Graus1-Feb-07 18:50 
GeneralRe: VB.Net ConnectionString Problem - OT Pin
shreekar1-Feb-07 23:55
shreekar1-Feb-07 23:55 
QuestionGetting Values of runtime created textbox in gridview column... Pin
TC281-Feb-07 17:15
TC281-Feb-07 17:15 
QuestionExtracting Data From Excel File Into Visual Basic Application Pin
Member 37862451-Feb-07 10:02
Member 37862451-Feb-07 10:02 
AnswerRe: Extracting Data From Excel File Into Visual Basic Application Pin
Christian Graus1-Feb-07 10:58
protectorChristian Graus1-Feb-07 10:58 
QuestionVB to ASP Pin
Keith Jenkins1-Feb-07 9:15
Keith Jenkins1-Feb-07 9:15 
AnswerRe: VB to ASP Pin
Christian Graus1-Feb-07 9:20
protectorChristian Graus1-Feb-07 9:20 

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.