I solved it. 
   
  Thanks
  

Obet Regino <[EMAIL PROTECTED]> wrote:
  Hi,

Can you please point me to the right direction or any reference site that I can 
go to solve my problem regarding SQL Server stored procedure?

Here is the code snippet that I am working on: 

dim db As New OLEObject("ADODB.Connection")
db.Open "Provider=SQLOLEDB.1;Integrated Security=SSPI;Initial Catalog=SmS;"

dim cmd as new OLEObject("adodb.command")
dim param as new OLEObject("adodb.parameter")

cmd.ActiveConnection = db
cmd.CommandText = "InsertRawData"

param.Name = "Record"
param.Value = strRec
param.Direction = adParamInput
param.Type = adVarChar
param.Size = 260
cmd.Parameters.Append param
cmd.Execute
cmd .close
param.close

db.close

Any help is very much appreciated.

Thank you very much

Robert Regino



---------------------------------
Be a PS3 game guru.
Get your game face on with the latest PS3 news and previews at Yahoo! Games.
_______________________________________________
Unsubscribe or switch delivery mode:


Search the archives:



 
---------------------------------
Be a PS3 game guru.
Get your game face on with the latest PS3 news and previews at Yahoo! Games.
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to