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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Mike42

    Creating an ADO Connection with C#

    The connection string with ADODB should be the same as the one you used in VB6. Try EngDatabase.Open("Provider=sqloledb;Data Source=Engineering;")
  2. Mike42

    XML Include Files

    Is this correct ? It looks like a special form of include that is parsed by Winamp. As far as I know the include will work like: <?xml version='1.0'?> <document xmlns:xi=&quot;http://www.w3.org/2001/XInclude&quot;> <p>120 Mz is adequate for an average home user.</p> <xi:include...
  3. Mike42

    (MSVC/COM) Allocating BSTR strings?

    There is a nice article in the MSDN library: The Rules of the Component Object Model: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncomg/html/msdn_therules.asp
  4. Mike42

    Recursive data structure example or help

    You can also define the data to be recursive. Example Schema: <?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-15&quot;?> <xs:schema xmlns:xs=&quot;http://www.w3.org/2001/XMLSchema&quot; elementFormDefault=&quot;qualified&quot;> <xs:complexType name=&quot;PartType&quot;> <xs:sequence>...
  5. Mike42

    Transaction Enlistment problem with Informix

    I have the same problem (with Client SDK 2.60) and reported this to informix but got no answer yet. As my evaluations showed the error message depends on the client SDK of informix. Last result was that the actual (2.70) SDK is not able to make any connection from inside a transactional...
  6. Mike42

    Using 1999/XSL/Transform Namespace

    To use &quot;http://www.w3.org/1999/XSL/Transform&quot; with IE5.5 you have to download and install MSXML 3.0 SP1 from Microsoft and run XmlInst.exe to replace the Parser used by the Internet explorer. If you just want to do things programmatically without viewing the XML-files in the Browser...
  7. Mike42

    ODBC Error from a component running inside MTS

    The server has to be configured to support transactions. If it is not correctly configured you will get the interface not supported error. There should be some Info in the manuals if you search for XA (not sure about this).
  8. Mike42

    MTS is not managing my transactions with Informix

    You will have to use the Informix ODBC driver to get this combination to work. As far as I know the Informix OLEDB driver does not support MTS Transactions, but the MS OLEDB for ODBC driver in combination with Informix ODBC will do. Try to get a recent ODBC driver (3.33 or 3.34) as it seems...
  9. Mike42

    Logical operation in xsl:template[@match] ?

    I try to write a xsl template with a match expression like <xsl:template match=&quot;node[@att1='v1'] and node[@att2='v2']&quot; /> But this won't work. Is there an equivalent notation ? I am using MSXML 3.0 SP1.
  10. Mike42

    Unable to insert Master/Detail records inside the same transaction

    Hello, I am new to MTS programming and tried to insert a master record with a detail record inside the same MTS transaction. The detail table has an foreign key constraint to the master table. So I built two MTS components (in the same DLL) with VC6 and set their transactional attribute to...

Part and Inventory Search

Back
Top