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 TouchToneTommy 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

    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...
  2. 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
  3. 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 ? $...
  4. 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
  5. 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
  6. 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
  7. 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
  8. 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...
  9. 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
  10. 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...
  11. 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...
  12. 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
  13. 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
  14. lakshmivaragan

    Font common dialog?

    Is there any packages availabe for selecting available fonts in the system. In short, are there any packages available for getting Font common dialog ? Regs Lax
  15. lakshmivaragan

    TCL - file problem

    Hi, When TCL variables are used for writing a file, the record length varies. This seems to be problem when: 1. Random access to records. Since record size varies we can't use tell or seek to point to any of the records and get it. 2. Rewrite a file. If I try to rewrite file with value...

Part and Inventory Search

Back
Top