Reputation: 1362
I need a code generator for data layer in visual basic 6.0 , having a CRUD functionality with SP interaction?
Upvotes: 1
Views: 1443
Reputation: 29
i used a program called vb_net_maker. even though the original site is no longer available, you might still be able to find copies of the program on the web. Its not free though, but i cant say how much is costs.
Upvotes: 0
Reputation: 1306
You can use MyGeneration. It's a free tool and works very well. You'll need a template to generate the code you want. It doesn't currently have any for VB that I can see, but you can write your own or modify one of the many existing templates (it's easy). You can also use the VB.NET or C# templates and then create .NET assemblies, expose them as COM libraries and call them from VB6. One of these options should work for you.
MyGeneration web page:
Download the program from the download.com link on that page.
If you choose to modify or write your own templates, I recommend reading my super awesome tutorial here.
Upvotes: 1
Reputation: 16348
One thing that may help you is the ADO Stored Procedure Generator at vbrad.com. According to the site, the addin "automates the task of mapping stored procedure parameters to ADO Command object parameters". I haven't tried it myself, but the feedback looks good.
Upvotes: 2