Search the web
Sign In
New User? Sign Up
oo4ole · Oracle Objects for OLE (OO4O) Users List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1035 - 1065 of 1863   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1035
I am trying to move a bitmap from Oracle to Access. The Oracle field is 'LONG RAW' and the Access field is 'OLE Object'. When the bitmap is in Access it is...
dylan@...
Send Email
Mar 1, 2001
9:04 pm
1036
If getchunkbyte won't work when you try to read the whole array at once, try GetChunkByteEx. This takes a variant and will populate the variant with the ...
c shay
cshay@...
Send Email
Mar 2, 2001
12:27 am
1037
I am having a problem with the checkbox control, under ADO the checkbox control, when bound through a data control to a number field in the database, maps 0...
mikearacic@...
Send Email
Mar 7, 2001
1:34 am
1038
Hello , I am using oracle objects of oracle version 8.0.6 client for my VC++ application . the files i have included for my applicaion are obound.h ,...
gita_gg13@...
Send Email
Mar 7, 2001
5:56 am
1040
I know this may not be for this group, but I know someone can help me. I have developed an app in VB as a front end to Oracle 8.1.6. Everything works fine...
Barry Stubbs
bgs@...
Send Email
Mar 8, 2001
9:08 pm
1041
create a role say 'bgs_user' that has right to all of your tables. then 'grant bgs_user to new_user' That should do it....
TimKArnold@...
Send Email
Mar 9, 2001
3:38 am
1042
you can also create synonyms under the schema you wish to connect as which will remove the need to use the schema prefix as follows create synonym mytable for...
Griffiths, Stewart
stewart.griffiths@...
Send Email
Mar 9, 2001
8:31 am
1043
Does somebody know which patch of OO4O I have to use with a Oracle 8.0.5. client ? Our system is WinNT4.0 with VB6 SP4 and Oracle 8.0.5. standard client. On...
stephane.tournadre@...
Send Email
Mar 10, 2001
8:33 am
1044
All of the patches used to be located at: ftp://oracle-ftp.oracle.com/dev_tools/patchsets/mslang/oo4o/...
Mark Tomlinson
marktoml@...
Send Email
Mar 10, 2001
1:55 pm
1045
I don't know which version to use : OO4O2350_runtime.exe 2.3.5.0.0 7.3.4 OO4O80639_runtime.exe 8.0.6.3.7 8.0.6 OO4O816312_runtime.exe...
stephane.tournadre@...
Send Email
Mar 11, 2001
8:57 am
1046
I'm trying to develop a VB application working with OO4O 2.3; I have allocated a DBOraDynaset object but I like to Know if I can use some kind of event to...
Ernesto Mouronte L...
mouronte@...
Send Email
Mar 11, 2001
5:45 pm
1047
Generally people don't try to keep the dynaset in perfect synch with the database. This is because the dynaset is considered to be a snapshot... a consistant...
c shay
cshay@...
Send Email
Mar 12, 2001
2:52 am
1048
I am not certain that this approach couldn't be made to scale fairly well, but a lot would depend on the size of the operation performed in the AQ message...
Mark Tomlinson
marktoml@...
Send Email
Mar 12, 2001
3:16 am
1049
Hi Friends How I use a "Sequence" with the method "Addnew"? Thanks Marcio Grazianni...
Conner Setor Técn...
conner@...
Send Email
Mar 14, 2001
9:03 pm
1050
Hi all, I am currently attempting to connect to an Oracle Database from VB for the first time using oo4o. I am getting the following error message at the...
Aine Deery
aine.deery@...
Send Email
Mar 15, 2001
10:21 am
1051
Hi all, I just figured out that the version of oo4o that I was using was incompatible with the Oracle and VB versions that I am currently running. Sorry for...
Aine Deery
aine.deery@...
Send Email
Mar 15, 2001
1:08 pm
1052
... See Oracle References for more details, As an alternative, you can use on your client "SELECT MySequence.nextval FROM DUAL;" and use the result in your...
stephane.tournadre@...
Send Email
Mar 17, 2001
8:18 am
1053
Interested in Renting Your Timeshare or Vacation Membership? We can help! For a FREE consultation simply reply with your name and telephone number. Also...
seth_b_reiner@...
Send Email
Mar 25, 2001
4:10 pm
1054
I think a lots of persons are finding difficulties in un-subscribing from a yahoo group ID. This is a simple way. 1. Go to the ID which u are receiving mails. ...
manick thilak
mvtkmagic@...
Send Email
Mar 26, 2001
12:39 pm
1055
Hello all, I must insert 2000+ rows (about 5Ko for each one) as fast as possible Here is my code in VB but it takes too long time (25 sec). How can I improve...
nesquikfrfr@...
Send Email
Mar 26, 2001
1:42 pm
1056
put all the stuff in a single PL/SQL block and execute it instead. such as BEGIN INSERT INTO blabla VALUES blabla; INSERT INTO hede VALUES hodo; .. and so .. ...
Sedat Kapanoglu
sedatk@...
Send Email
Mar 26, 2001
1:49 pm
1057
Thanks a lot for your proposition but unfortunately the gain is very low : 20 sec instead of 25 sec ... May I miss something ? That said, it tooks 5 minutes...
nesquikfrfr@...
Send Email
Mar 26, 2001
2:12 pm
1058
hmm doing the insertion in a separate transaction may speed things up a bit.. (since only one COMMIT will be issued instead of 2000) ... From:...
Sedat Kapanoglu
sedatk@...
Send Email
Mar 26, 2001
2:32 pm
1059
I suggest....... You may use PL/SQL Stored Procedure that accepts pl/sql table as "IN parameter" instead. And that procedure uses "dbms_sql" batch inserting....
Masato Fujii
m-fji@...
Send Email
Mar 26, 2001
4:12 pm
1060
Hi, Actually, we get the best speed with the "FOR ALL..." statements in PL/SQL stored procedure (look at Oracle 8.1.5 and higher documentation). It's even...
stephane.tournadre@...
Send Email
Mar 26, 2001
8:01 pm
1061
Thx again to all for your tips ! but even in PL, results still are disappointing. My pb is that I cannot use _for all_ because Oracle does not allow collection...
nesquikfrfr@...
Send Email
Mar 26, 2001
8:42 pm
1062
Hi. All, I always have problem to deploy OO4O with my vb application. My client computers using NT4 and oracle client 7.3 is pre-installed. The error message...
junyang0001@...
Send Email
Mar 27, 2001
9:51 pm
1063
Does OO4O work for Access2000? Where can I find some code examples/books/tutorials if this is possible? Thanks!...
Lynn Kuhlman
lynn@...
Send Email
Mar 28, 2001
2:15 am
1064
At the end of you setup, use a CMD file instead of a REG file and auto-register (again) OO4O : regsvr32 <OracleDir>\Bin\Oip22.dll. It will clean up everything....
stephane.tournadre@...
Send Email
Mar 28, 2001
8:30 am
1065
I don't understand your type "ofields". Can you give some precisions ? And what is the script of your table "record" ? By the way, you can do directly (even if...
stephane.tournadre@...
Send Email
Mar 28, 2001
8:38 am
Messages 1035 - 1065 of 1863   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help