Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Invalid Character 00911 when creating sequence via VB

Status
Not open for further replies.

nickjar2

Programmer
Jun 20, 2001
778
0
0
US
all i really have is the following:

dim sBeacon as string

sBeacon = "CREATE SEQUENCE beacon_seq;"

set cmd = new adodb.command

with cmd
.activeconnection = conn
.commandtext=sbeacon
.execute sBeacon
end with

That all looks OK to me. Cheers for any help. Nick (Everton Rool OK!)
 
Hi,

I had the same problem a few months ago.

It's the connection string of the ADO control

that is probably set wrongly.

Hope this will help.

Regards. Pierre
Montreal,Quebec,Canada
 
Cheers for responding. You don't need the semi colon using ADO.

sBeacon = "CREATE SEQUENCE beacon_seq"
Nick (Everton Rool OK!)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top