Название: QSqlDataBase без QApplication Отправлено: Mor от Октябрь 10, 2006, 09:17 Всем приветы!
Можно как-нить создать QSqlDataBase без создания QApplication??? Если не создавать QApplication, то никакие драйвера БД не доступны... :cry: Название: QSqlDataBase без QApplication Отправлено: bigirbis от Октябрь 10, 2006, 09:25 Естественно, они же от QObject растут :)
Название: QSqlDataBase без QApplication Отправлено: Mor от Октябрь 10, 2006, 09:31 Т.е. че, никак? :cry:
Название: QSqlDataBase без QApplication Отправлено: bigirbis от Октябрь 10, 2006, 09:37 Типа - да. А что? Западло экземпляр QApplication создать?
Название: QSqlDataBase без QApplication Отправлено: Mor от Октябрь 10, 2006, 10:13 если честно, то "да"... :?
мне он там совсем не уперся, а поддержка баз нужна... Название: QSqlDataBase без QApplication Отправлено: bigirbis от Октябрь 10, 2006, 11:25 Еще можно работать через какой-нибудь стандартный ODBC интерфейс (или что-нибудь подобное). Только не думаю, что так быстрее получится.
Название: QSqlDataBase без QApplication Отправлено: Admin от Октябрь 10, 2006, 21:54 если напрягает QT
то делаем через otl otl.sf.net я с QT поддержкой баз даных не связываюсь не доверяю я им :) Название: QSqlDataBase без QApplication Отправлено: Mor от Октябрь 11, 2006, 11:05 Цитировать если напрягает QT Меня не QT напрягает, меня напрягает создание QApplication... В моем проекте QT нужно только для реализации работы с БД, в остальном я QT не использую.. Цитировать я с QT поддержкой баз даных не связываюсь не доверяю я им Почему? У них (QT) работа с БД довольно проста... а вот у OTL/DTL - довольно закавыриста... Название: QSqlDataBase без QApplication Отправлено: Admin от Октябрь 11, 2006, 12:09 я бы не сказал!
otl очень простой и дальше SQL запросов не уходит и список баз поддерживаемых просто поражает Название: QSqlDataBase без QApplication Отправлено: crocus от Октябрь 12, 2006, 01:16 to Admin: А примерчик использования otl не подкинешь?? :))
Название: QSqlDataBase без QApplication Отправлено: Admin от Октябрь 12, 2006, 12:43 а ты на сайт пробовал заходить там примеров дофигааааа
для ленивых: http://otl.sourceforge.net/otl4_ex260.htm OTL 4.0, Example 260 (OTL stream read iterator, simple SELECT, Oracle) Example 260 (OTL stream read iterator, simple SELECT, Oracle) This example demonstrates otl_stream_read_iterator for Oracle. Source Code #include <iostream> using namespace std; #include <stdio.h> // #define OTL_ORA7 // Compile OTL 4.0/OCI7 //#define OTL_ORA8 // Compile OTL 4.0/OCI8 //#define OTL_ORA8I // Compile OTL 4.0/OCI8i #define OTL_ORA9I // Compile OTL 4.0/OCI9i //#define OTL_ORA10G // Compile OTL 4.0/OCI10g #define OTL_STREAM_READ_ITERATOR_ON #include <otlv4.h> // include the OTL 4.0 header file otl_connect db; // connect object void insert() // insert rows into table { otl_stream o(50, // buffer size "insert into test_tab values(:f1<int>,:f2<char[31]>)", // SQL statement db // connect object ); char tmp[32]; for(int i=1;i<=100;++i){ sprintf(tmp,"Name%d",i); o<<i<<tmp; } } void select() { otl_stream i(50, // buffer size "select * from test_tab " "where f1>=:f11<int> and f1<=:f12<int>*2", // SELECT statement db // connect object ); // create select stream int f1; char f2[31]; otl_stream_read_iterator<otl_stream,otl_exception,otl_lob_stream> rs; rs.attach(i); // attach the iterator "rs" to the stream "i". i<<8<<8; // assigning :f11 = 8, :f12 = 8 // SELECT automatically executes when all input variables are // assigned. First portion of output rows is fetched to the buffer while(rs.next_row()){ // while not end-of-data rs.get(1,f1); rs.get(2,f2); cout<<"f1="<<f1<<", f2="<<f2<<endl; } rs.detach(); // detach the itertor from the stream i<<4<<4; // assigning :f11 = 4, :f12 = 4 // SELECT automatically executes when all input variables are // assigned. First portion of output rows is fetched to the buffer while(!i.eof()){ // while not end-of-data i>>f1>>f2; cout<<"f1="<<f1<<", f2="<<f2<<endl; } } int main() { otl_connect::otl_initialize(); // initialize OCI environment try{ db.rlogon("scott/tiger"); // connect to Oracle otl_cursor::direct_exec ( db, "drop table test_tab", otl_exception::disabled // disable OTL exceptions ); // drop table otl_cursor::direct_exec ( db, "create table test_tab(f1 number, f2 varchar2(30))" ); // create table insert(); // insert records into table select(); // select records from table } catch(otl_exception& p){ // intercept OTL exceptions cerr<<p.msg<<endl; // print out error message cerr<<p.stm_text<<endl; // print out SQL that caused the error cerr<<p.var_info<<endl; // print out the variable that caused the error } db.logoff(); // disconnect from Oracle return 0; } Output f1=8, f2=Name8 f1=9, f2=Name9 f1=10, f2=Name10 f1=11, f2=Name11 f1=12, f2=Name12 f1=13, f2=Name13 f1=14, f2=Name14 f1=15, f2=Name15 f1=16, f2=Name16 f1=4, f2=Name4 f1=5, f2=Name5 f1=6, f2=Name6 f1=7, f2=Name7 f1=8, f2=Name8 |