Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
mattuas
Starting Member
6 Posts |
Posted - 2002-08-05 : 21:57:56
|
| Am I able to create an extended stored procedure when I'm using VB to build an activex dll? I dont know if I'm missing somthing here but all the examples I've seen use C++ and my call to VB .dll does not seem to work: Cannot find the function xp_integrate in the library HXXINTEG.dll. Reason: 127(The specified procedure could not be found.).** xp_integrate is a public function in xp_integrate.cls |
|
|
byrmol
Shed Building SQL Farmer
1591 Posts |
Posted - 2002-08-05 : 22:08:40
|
| Mattuas,You can only write a Extended SP in C++.The next release of SQL Server should make them redundant, but that doesn't help now :)DavidM"SQL-3 is an abomination.." |
 |
|
|
robvolk
Most Valuable Yak
15732 Posts |
Posted - 2002-08-06 : 07:45:42
|
quote: You can only write a Extended SP in C++.
Not exactly. Extended procedures can be written in any language, but there are ODS header files that must translated into that language in order for the procedure to be called properly. |
 |
|
|
|
|
|