Click here to Skip to main content
15,887,746 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Prevent clicking on controls inside a groupbox without disabling Pin
dilkonika1-May-14 4:25
dilkonika1-May-14 4:25 
GeneralRe: Prevent clicking on controls inside a groupbox without disabling Pin
Dave Kreskowiak1-May-14 5:22
mveDave Kreskowiak1-May-14 5:22 
GeneralRe: Prevent clicking on controls inside a groupbox without disabling Pin
dilkonika1-May-14 6:15
dilkonika1-May-14 6:15 
Questionmerge column but no spaces between data [Solved] Pin
khei-chan00725-Apr-14 16:37
khei-chan00725-Apr-14 16:37 
AnswerRe: merge column but no spaces between data Pin
Peter Leow25-Apr-14 18:22
professionalPeter Leow25-Apr-14 18:22 
GeneralRe: merge column but no spaces between data Pin
khei-chan00725-Apr-14 19:40
khei-chan00725-Apr-14 19:40 
GeneralRe: merge column but no spaces between data Pin
Peter Leow25-Apr-14 21:22
professionalPeter Leow25-Apr-14 21:22 
QuestionORA-009000 Invalid SQL Statement when executing from code Pin
USAFHokie8025-Apr-14 1:28
USAFHokie8025-Apr-14 1:28 
Hi. So I know I've done this before but I can't get it to work despite every example on the internet telling me it should... I'm trying to call a procedure from code. I keep getting an "Invalid SQL statement" exception. Any ideas why? And yes, the procedure compiles and gives no errors when calling from an oracle client.

SQL
create procedure DoSomething
as
begin
 --does some calculations and updates some rows
end DoSomething;



I try to execute from code like so:

VB
Using conn = New OracleConnection(MyConnectionString)
   Using cmd = conn.CreateCommand()
      cmd.CommandType = CommandType.StoredProcedure 
      cmd.CommandText = "DoSomething"
      conn.Open()
      cmd.ExecuteNonQuery()
      conn.Close()
   End Using
End Using


At which point I get the aforementioned exception.

What am I doing wrong?

Sam.
AnswerRe: ORA-009000 Invalid SQL Statement when executing from code Pin
Simon_Whale25-Apr-14 1:47
Simon_Whale25-Apr-14 1:47 
GeneralRe: ORA-009000 Invalid SQL Statement when executing from code Pin
USAFHokie8025-Apr-14 1:49
USAFHokie8025-Apr-14 1:49 
SuggestionRe: ORA-009000 Invalid SQL Statement when executing from code Pin
Richard Deeming25-Apr-14 1:51
mveRichard Deeming25-Apr-14 1:51 
GeneralRe: ORA-009000 Invalid SQL Statement when executing from code Pin
USAFHokie8025-Apr-14 2:13
USAFHokie8025-Apr-14 2:13 
GeneralRe: ORA-009000 Invalid SQL Statement when executing from code Pin
Dave Kreskowiak25-Apr-14 2:41
mveDave Kreskowiak25-Apr-14 2:41 
GeneralRe: ORA-009000 Invalid SQL Statement when executing from code Pin
USAFHokie8025-Apr-14 2:54
USAFHokie8025-Apr-14 2:54 
GeneralRe: ORA-009000 Invalid SQL Statement when executing from code Pin
Dave Kreskowiak25-Apr-14 3:02
mveDave Kreskowiak25-Apr-14 3:02 
GeneralRe: ORA-009000 Invalid SQL Statement when executing from code Pin
USAFHokie8025-Apr-14 3:15
USAFHokie8025-Apr-14 3:15 
GeneralRe: ORA-009000 Invalid SQL Statement when executing from code Pin
Dave Kreskowiak25-Apr-14 6:28
mveDave Kreskowiak25-Apr-14 6:28 
GeneralRe: ORA-009000 Invalid SQL Statement when executing from code Pin
thatraja25-Apr-14 3:11
professionalthatraja25-Apr-14 3:11 
QuestionHow to increase row height in list view vb.net 2008 Pin
D.Manivelan24-Apr-14 23:06
D.Manivelan24-Apr-14 23:06 
QuestionThird Party Software/ OCX grammar checker for VB 6.0 Pin
radjitz24-Apr-14 22:00
radjitz24-Apr-14 22:00 
AnswerRe: Third Party Software/ OCX grammar checker for VB 6.0 Pin
CHill6025-Apr-14 0:47
mveCHill6025-Apr-14 0:47 
QuestionChanging backcolor of a textbox Pin
CHill6024-Apr-14 5:54
mveCHill6024-Apr-14 5:54 
AnswerRe: Changing backcolor of a textbox Pin
Tino Fourie24-Apr-14 6:16
Tino Fourie24-Apr-14 6:16 
GeneralRe: Changing backcolor of a textbox Pin
CHill6025-Apr-14 0:45
mveCHill6025-Apr-14 0:45 
AnswerRe: Changing backcolor of a textbox Pin
Richard Deeming24-Apr-14 6:21
mveRichard Deeming24-Apr-14 6:21 

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.