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 SkipVought 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. lakshmivaragan

    container to store multiple types

    I understand there is boost::any Apart from this, is there any workaround possible with C++ standard libraries itself?
  2. lakshmivaragan

    container to store multiple types

    Is there a way I could store multiple objects of different types in a container, say, a vector or map or an array? e.g template <class T> class Holder { public: T * m_ptr; Holder(T * ptr) { m_ptr = ptr; } }; class Cls1 { xxx... }; class Cls2...
  3. lakshmivaragan

    Idle ports

    The previous posts were about closing the ports that were opened and bound to a particular process. I'm concerned about the idle ports. These ports are not bound (LISTEN) by any application. These are ports that are just open and idle. Though idle, these ports take up resources. My question is...
  4. lakshmivaragan

    Idle ports

    I did netstat -na | grep -i idle Got lot of idle ports listed. I understand that though idle, these ports still hold the resources. Nearly 300 such ports are listed. Is there a way / tool available to close these idle ports? Sysinfo: $ uname -a SunOS xxx 5.10 Generic_127112-10 i86pc i386 i86pc
  5. lakshmivaragan

    Oratcl problem

    Oratcl throwing the mentioned error seems to be a known problem. I tried loading oratcl in HP-ux. Some site suggested that there is patch available for dld.sl... I think after applying the patch, oratcl wud work fine. Regs LAx
  6. lakshmivaragan

    Oratcl problem

    Hi, I got the below mentioned error, while trying to load the liboratcl3.3.sl (library for Oratcl). Is this problem specific to unix or with the oratcl library. I also tried to use &quot;package require Oratcl&quot;. The same error appears... What might be the problem ? $...
  7. lakshmivaragan

    Get range of rows from a table.

    Hi, Is there any way to get a range of rows from a table. For e.g to get rows 10 to 15 from a table ? (ROWNUM is no good. Since > wont work with ROWNUM. We cant have query like this SELECT * FROM EMP WHERE ROWNUM > 10 and ROWNUM < 15 ) Is there any other way ??? Regs Lax
  8. lakshmivaragan

    TCL for Tandem

    Hi, Does TCL/TK exists for Tandem OSes ? Or what are the scripting languages used with Tandem ? Can TCL/TK be ported to Tandem ? Regs Lax
  9. lakshmivaragan

    database connectivity in unix

    Hi, Are there any packages available for database connectivity for unix (other than oratcl). I need something like tclodbc (generalized one to connect to all the databases) Regs Lax
  10. lakshmivaragan

    How to get code of trigger?

    Hi, I understand that triggers available can be extracted from the all_objects table. Is there any way to get the code of particular trigger? I mean, Does Oracle stores the code of triggers somewhere to extract? Regs Lax
  11. lakshmivaragan

    How to get column names?

    Hi, I understand that column names of table can be got from &quot;cols&quot; or &quot;col&quot; system table. If I login as &quot;system&quot;, I want to get the column names of table which belong to particular user/schema. In the &quot;cols&quot; or &quot;col&quot; system table, there is...
  12. lakshmivaragan

    Tcl/Tk Editor

    Lot of editors are available... Try ASED regs Lax
  13. lakshmivaragan

    Any Alternates available?

    Hi, I'm looking for package similar to tclodbc, but for unix. Is there any package available for unix other than oratcl to communicate with oracle ? Regs Lax
  14. lakshmivaragan

    TCLODBC problem ?

    Finally I could get the solution. I should provide IP address instead of providing the machine name. Regs Lax
  15. lakshmivaragan

    How to make independent executables?

    Hi, I'm using TCL 8.4 which has iwidgets package. I tried to make independent executable (.exe of tcl program which runs on a machine that has no TCL installed). Since I'm using Iwidgets, an error pops up saying &quot;Cannot find package Iwidgets&quot;. Is there any .dll for Iwidgets, so...
  16. lakshmivaragan

    TCLODBC problem ?

    Hi, I'm using TCLODBC to connect to MS-Access db which has password. Its working fine if the database is in local machine. If I go to network, I could not able to connect as it says &quot;Password incorrect&quot;. If I unset the passowrd and connect it thru network, it works fine. Pls...
  17. lakshmivaragan

    Compiler for TCL

    Thanx for the reply. And yeah, I know that procomp command of TclPro provides only source code obfuscation. I want to know whether any other commands similar to &quot;procomp&quot; are available in standard TCL/TK editions Regs Laks
  18. lakshmivaragan

    Compiler for TCL

    Hi there, I understand that TCL scripts can be compiled using &quot;procomp&quot; command of tclpro. Is compilation option only available in tclpro ? If not, is there any package available for compiling tcl scripts ? Regs Lakshmivaragan
  19. lakshmivaragan

    Getting index from listbox

    Hi, Is there any inbuilt function to get the index when the text is given ?(Text items are unique) (At present I'm getting index by my own proc. ) Thanx Lakshmivaragan
  20. lakshmivaragan

    Need to insert &lt;alt&gt;&lt;enter&gt; into a CSV

    Hi John, You are goin to save data in .csv files, right ? Now, try this: Write the CSV file in such a way that each row in excel is one line in the file. Excel automatically takes care of shifting the next line to its next row. Take a look at the snapshot below: set fd...

Part and Inventory Search

Back
Top