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

Recent content by smeagolgollum

  1. smeagolgollum

    php crashes when freeing oci statement

    After parse and execute the select statement, i play my own stuff like (i don't post the whole piece of code here. it would be irrelevant since I don't do anything weird ; just plain retrieval of the rows and formatting as a table) while (OCIFetchInto(...)) { // generate my table } when...
  2. smeagolgollum

    RegExp

    the regex would be "\w+\@(\w+\.)+\w+" it is much easier and performance should be better
  3. smeagolgollum

    RegExp

    the regex would be "\w+\@(\w+\.)+\w+ it is much easier and performance should be better
  4. smeagolgollum

    php crashes when freeing oci statement

    I create the instances the simplest way : ... $table = new SQLTable($user,$pass,$db); ... ... $table = new SQLTable($user,$pass,$db); ... I get some kind of core dump here it is : (it is a bit long) ********** Internal heap ERROR 17112 addr=0xbf3e44 ********* ***** Dump of memory around...
  5. smeagolgollum

    php crashes when freeing oci statement

    Hi i am having a lot of trouble with one of my scripts i encapsulated the execution of select statement and their output to the browser in a class. all it does is connect to the database using user/pass/db given, executes the statement and builds a table from it. my problem is that when php...
  6. smeagolgollum

    Using a VB class in a ASP VBScript

    I need to use the class I wrote with VB.NET on the server side scripts. There seems to be a problem when registering the assembly code to the .NET Framework even though Visual says everything is OK. I modified the code so that the class gets registered with COM but I never got it to work with...
  7. smeagolgollum

    Using a VB class in a ASP VBScript

    Hi I am trying to use a class I wrote in VB in a ASP VBScript. I figured I could make the class a dll known to the system and then use the CreateObject to have an instance of it but it seems I missed something. Can anyone help a bit ?? Thanks Smeagol Gollum
  8. smeagolgollum

    Using VB Class in VBScript

    Thanks this really helped a lot
  9. smeagolgollum

    Using VB Class in VBScript

    Hi everyone I am totally new to VBScript and I don't know yet what the language can do exactly nor do I find the documentation I need. I was wondering whether it was possible to create an instance of a VB class I defined in "Logger.vb" inside an ASP file. I have no idea as to how...

Part and Inventory Search

Back
Top