If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Oracle > Oracle search

Reply
 
LinkBack Thread Tools Display Modes
  #16 (permalink)  
Old 08-30-10, 20:29
wild kayode wild kayode is offline
Registered User
 
Join Date: Oct 2008
Posts: 33
ok..so from what am seeing here you are referring to a list of all the tables you have created. how do i actually get that list to show in dreamweaver? the connection to the database was tested successfully but yet still i get none of the tables created...
Reply With Quote
  #17 (permalink)  
Old 08-30-10, 20:40
anacedent anacedent is offline
Registered User
 
Join Date: Aug 2003
Location: Where the Surf Meets the Turf @Del Mar, CA
Posts: 6,151
>how do i actually get that list to show in dreamweaver?
Perhaps you should post this question at a DreamWeaver forum.
__________________
You can lead some folks to knowledge, but you can not make them think.
The average person thinks he's above average!
For most folks, they don't know, what they don't know.
Reply With Quote
  #18 (permalink)  
Old 09-01-10, 11:37
wild kayode wild kayode is offline
Registered User
 
Join Date: Oct 2008
Posts: 33
good day all,
ok...so i think i see where the problem is with the tables not showing in Dreamweaver. When i installed Oracle , i didnt not create a new profile but i did all my create and insert statements as well as building my forms using "system" as the user name. i thought came to mind to create a new user and create a sample table to see if it would show up in Dreamweaver...it actually showed..which is good but my question is..must i recreate all the statements and forms or is there a way to transfer the tables i want to the new user i created. your assistance would be greatly appreciated. thanks in advance
Reply With Quote
  #19 (permalink)  
Old 09-01-10, 12:08
beilstwh beilstwh is offline
Lead Application Develope
 
Join Date: Jun 2004
Location: Liverpool, NY USA
Posts: 2,172
What is your connect string that you are using in ODBC to connect to the oracle database.
__________________
Bill
You do not need a parachute to skydive. You only need a parachute to skydive twice.
Reply With Quote
  #20 (permalink)  
Old 09-01-10, 12:14
wild kayode wild kayode is offline
Registered User
 
Join Date: Oct 2008
Posts: 33
hey there,please see connection string below
"Provider=OraOledb.Oracle.1;User Id=my_username;Password=my_password;"
Reply With Quote
  #21 (permalink)  
Old 09-02-10, 11:15
beilstwh beilstwh is offline
Lead Application Develope
 
Join Date: Jun 2004
Location: Liverpool, NY USA
Posts: 2,172
I was hinting on what is the "my_username", is it the same schema where the data tables are placed?
__________________
Bill
You do not need a parachute to skydive. You only need a parachute to skydive twice.
Reply With Quote
  #22 (permalink)  
Old 09-02-10, 11:56
wild kayode wild kayode is offline
Registered User
 
Join Date: Oct 2008
Posts: 33
the user name is system..and yes this is where the data tables were created...however.. i seem to have found a solution to the problem...i created a new user..created a sample table and that table showed in Dreamweaver..this prompted me to recreate all the tables..change the credentials in the connection string and it worked fine...
Reply With Quote
  #23 (permalink)  
Old 09-02-10, 12:47
Littlefoot Littlefoot is offline
Lost Boy
 
Join Date: Jan 2004
Location: Croatia, Europe
Posts: 3,590
Quote:
Originally Posted by wild kayode
the user name is system
That was a VERY bad idea in the first place. Do not use SYS nor SYSTEM for your own amusement. Ever.
Reply With Quote
  #24 (permalink)  
Old 09-02-10, 21:06
wild kayode wild kayode is offline
Registered User
 
Join Date: Oct 2008
Posts: 33
yea..i learnt that the hard way..am new at this so i guess things like that will happen..but i know what to do next time..thats how we learn!! thanks again for your help.
Reply With Quote
  #25 (permalink)  
Old 09-16-10, 12:36
wild kayode wild kayode is offline
Registered User
 
Join Date: Oct 2008
Posts: 33
hey guys..i have another question..well i know its possible to create an SQL statement to find a range of values.
example
SELECT * FROM EMPLOYEE
WHERE EMPAGE
BETWEEN 21 AND 50;
my question is..how can i create a form that allows me to enter the two values and return the respective results? assistance would be greatly appreciated. if anything needs clarification feel free to ask.
Best Regards
W.K
Reply With Quote
  #26 (permalink)  
Old 09-16-10, 16:20
beilstwh beilstwh is offline
Lead Application Develope
 
Join Date: Jun 2004
Location: Liverpool, NY USA
Posts: 2,172
Quote:
Originally Posted by wild kayode View Post
thanks for your reply..but what exactly do u mean?
How are you connecting to the database through ODBC? if your tables are in the JUNK schema, then you have to connect to the JUNK schema to use them.
__________________
Bill
You do not need a parachute to skydive. You only need a parachute to skydive twice.
Reply With Quote
  #27 (permalink)  
Old 09-16-10, 17:36
Littlefoot Littlefoot is offline
Lost Boy
 
Join Date: Jan 2004
Location: Croatia, Europe
Posts: 3,590
As of the last question (posted in a message #25): Forms already has that functionality - you just have to learn how to use it.
  • enter query mode
  • go to "empage" item
  • type ":a" in there (without double quotes, simply colon (:) + a)
  • press <Execute query>
  • a new window will open
  • in there, enter
    Code:
    :a between 21 and 50
  • push the <OK> button

Otherwise, you'd have to create two items (let's call them "empage_from" and "empage_to") and dynamically create block's WHERE condition using SET_BLOCK_PROPERTY with its DEFAULT_WHERE (or ONETIME_WHERE) properties.

From my point of view, I'd teach my users to use what's offered instead of reinventing the wheel.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On