Recent content by dananiev

  1. D

    Cannot put non-latin strings

    Marco Kalter, thank you.
  2. D

    Cannot put non-latin strings

    Marco, Do you have any update on this issue? We can nor enter non-latin chars into grid column fields. Copy-paste and large data editor work fine.
  3. D

    DOA 4.1

    Will DOA version 4.1 use variables in QBE as in previous versions?
  4. D

    Problem changing SQL in TOracleDataSet

    I found work around but may be there is easier way. Instead of what I showed above: DataSet->SQL->Text = ReplaceSortOrder( DataSet->SQL->Text, OrderBy); DataSet->Refresh(); i used if( DataSet->QBEModified) { //Saving QBE values in array of Variants Variant * v = new...
  5. D

    Problem changing SQL in TOracleDataSet

    I am trying to change SQL in TOracleDataSet in runtime and it does not work with QBE. For example I have SQL Select * from all_tables I do QBE and TOracleDataSet changes SQL to select * from all_tables where (OWNER = 'SYS') /* Modified for QBE */ Now in code I add new line,something like...
  6. D

    Rownum on a client side

    All I solved it. I created Calculated field RN and in OnCalculate()
  7. D

    Rownum on a client side

    I have Oracle 8.0.6 and can not use order by in the subquery. IMHO it should be done on client side but I don't know how.
  8. D

    Rownum on a client side

    My users want to have a column that shows row number (mostly for export in MS Excel). ROWNUM on server side does not work with ORDER BY. Is there a way to make it? May be calculated field some how?
  9. D

    Will you sell ane new components to work with OLAP & Data Mining Oracle 9I services?

    Marco, Will you sell ane new components to work with OLAP & Data Mining Oracle 9I services?
  10. D

    DOA Speed

    Marko, All I did a simple test (C++ Builder): start = TDateTime::CurrentDateTime(); DataSet->Open(); while( !DataSet->Eof) { for( int i =0; iFields->Count; i++) switch( DataSet->Fields->Fields[i]->DataType ){ ftString : ftSmallint ...
  11. D

    Columns from primary Key

    You can query omething like that select COLUMN_POSITION, COLUMN_NAME from sys.all_ind_columns c where c.index_name = ( SELECT MIN( index_name) FROM sys.all_indexes I WHERE I.OWNER='OWNER' AND I.table_name='TABLE_NAME' and i.uniqueness='UNIQUE') ORDER BY COLUMN_POSITION [This message has been...
  12. D

    How can I cancel QBE Mode?

    // Enter into QBE mode OracleDateSet1->QBEMode=true; // do someting ... // decided to cancel QBE like in OracleNavigator OracleDateSet1->RestoreOldQBE_orSomethingLikeThis(); //??? Is there any way to do it in runtime programmatically? [This message has been edited by dananiev (edited 10 October...
  13. D

    QBE

    The SQL should have variables. It should be like: SELECT * FROM TABLE1 WHERE :DATES1>TABLEDATE AND :DATES2
  14. D

    DAO Evaluation

    I tested both about 1 year ago. DOA is better.
  15. D

    TOraclewwDataSet

    OK, actually I have InfoPower 2000. Thanks
Back
Top