How Can I call SQL Server SMO Objects in VC6 or VB6
Hi
I want to use SQL SMO (SQL Management Object .Net Library) in VC 6.0 and VB.6.0
I don’t want to use SQL DMO (COM component)
I tried to make COM callable wrapper (CCW) for SMO using the following command line execution.
RegAsm.exe /tlb:MicrosoftSqlServerSmoTest.tlb Microsoft.SqlServer.Smo.dll
After executing the command line RegAsm.exe, I got the following output.
Microsoft (R) .NET Framework Assembly Registration Utility 2.0.50727.42
Copyright (C) Microsoft Corporation 1998-2004. All rights reserved.
Types registered successfully
Type library exporter warning processing 'Microsoft.SqlServer.Management.Smo.Bac
kupDeviceList, Microsoft.SqlServer.Smo'. Warning: Type library exporter encounte
red a type that derives from a generic class and is not marked as [ClassInterfac
e(ClassInterfaceType.None)]. Class interfaces cannot be exposed for such types.
Consider marking the type with [ClassInterface(ClassInterfaceType.None)] and exp
osing an explicit interface as the default interface to COM using the ComDefault
Interface attribute.
Assembly exported to 'C:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Mi
crosoftSqlServerSmoTest.tlb', and the type library was registered successfully
In My VB6 Application I have included the Refrence Microsoft_SqlServer_Smo
Then I tried to call Server Object with parameter shown below.
Dim objServer As Server
Set objServer = new Server(Server_Name)
But compile error occurs in the line Set objServer = new Server(Server_Name)
I have the following queries.
- How can I access SMO objects in VC 6 or VB6 applications using any method?
- How can I solve the compile error?
- How can I avoid the Warning when calling the callable wrapper (CCW)?
4. Is it possible to use parameterized constructors in .net components?
- Is it necessary that the GUIDs to all .NET objects so that the appropriate COM required registry entries can be created?
For example :
[Guid("2979DBB0-3371-4841-9B94-B79EAE28B503")]
public class TestInteropSample
{
}
Kindly reply me ,
Thanking you,
Kuttappan.
Hello,
I'm having the same problem. Did you ever find a solution?
thanks,
kelly
|||SMO is only supported in VB/C#.Net 2005. It requires the .Net 2.0 Framework, which isn't available in VB/VC 6.
No comments:
Post a Comment