2,951 Posted Topics
Re: You just need to add a constraint for the purpose. Post #2 should help you in defining all that. | |
Re: do you understand that oracle is a database and not a system programming language ? | |
| |
Re: the error message is self explanatory. check if the target database is up and running. | |
Re: the following discussion might be useful for you. [URL="http://bytes.com/community/editors/793535-add-vista-effects-your-forms-vb-howtos"]link[/URL] | |
Re: Do you know how to populate data from/to a DB into/from a DataGrid/DBGrid ? Database table is a 2D array only. | |
Re: It is better to start a different thread for a new question. anyways try to use this sample query [code=oracle] DELETE FROM emp e WHERE rowid>(SELECT MIN(ROWID) FROM emp WHERE e.empno=empno) [/code] | |
Re: if using sql*plus with oracle use the follwing SQL> SET TIMING ON SQL> YOUR QUERY ........... | |
Re: [B]vb6 exe decompiler[/B] is a hoax. These is no such tool. If anyone claims to have that , ask him/her to give you a copy of the same. Use that to get back your code from the compiled EXE. I know for sure that is never going to happen. Do … | |
Re: You need to write some SQL that will UPDATE the records in the table. Do not forget to commit the transactions (using COMMIT command). | |
Re: once you set the environmental variable by using SET serveroutput ON; That will be available for the entire session. | |
Re: Please reframe the question, explaining the exact requirements clearly. | |
Re: Some of the required system files must might got corrupted. | |
Re: The error message is self explanatory. You need to try using the command from sys or system log in or from any other account having the required prevelages. | |
Re: Kindly post the code that you are working on. | |
Re: you want to create a group of textbox for each Id ? | |
Re: Please read [URL="http://download.oracle.com/docs/cd/B19306_01/server.102/b14200.pdf"]this[/URL] and [URL="http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261.pdf"]this[/URL]. That will be really helpful. | |
Re: You need to use ADOX library more details [URL="http://www.daniweb.com/forums/thread65252.html"]here[/URL] and [URL="http://www.bigresource.com/VB-VB6-Adding-Data-to-Access-Table-Field-LHjUheDXJt.html"]here[/URL]. | |
Re: Please find the connection strings [URL="http://www.connectionstrings.com/dbf-foxpro"]here[/URL]. | |
Re: You want to create a project using oracle database only ? | |
Re: Add reference to ADODB and then create objects . Then you just need to play with those. | |
Re: DTPicker is better control in comparison to calendar control. | |
Re: You can store the siting arrangement (available/occupied,window/middle/aisle) of flights in database as per flight code. | |
Re: Please read [URL="http://www.daniweb.com/forums/thread181910.html"]this[/URL]. | |
Re: Try this [code=sql]select * from emp where rownum<4 order by sal desc[/code] | |
Re: Try this [CODE]select * from user_tab_cols where column_name like '%COLUMNNAME%';[/CODE] use escape sequence to ignore _ (under score as that is a wild character for pattern matching.) pass the column name is upper case or use UPPER function. | |
Re: Please check the correct [URL="http://www.connectionstrings.com/"]connection string[/URL]. | |
Re: Do not post the name of Social Networking Site here. You may be hit hard on head with a hugh heavy hammer. | |
Re: document or database ? use SQL for the purpose and use LIKE for pattern matching. | |
Re: Please find details [URL="http://msdn.microsoft.com/en-us/library/6y3efyhx%28VS.80%29.aspx"]here[/URL] , [URL="http://www.a1vbcode.com/snippet-179.asp"]here[/URL] and [URL="http://www.vb6.us/tutorials/playsound-api"]here[/URL]. | |
Re: use the following [code]select level from dual connect by level<=2[/code] | |
Re: What is your thesis about ? | |
Re: you can also based on multiple fields one after another [B].......order by field1,field2,field3.[/B] | |
Re: try to register the componenet with windows by using [B]REGSVR32[/B] key. | |
Re: Both form 6i and database 8i are out dated and is not supported any more. Better try to use latest versions of both the applications. | |
Re: This is how you [URL="http://bytes.com/topic/visual-basic/insights/641548-blob-save-image-database"]store[/URL] and [URL="http://bytes.com/topic/visual-basic/insights/641546-blob-retrieve-image-stored-database"]retrieve[/URL] image from database. | |
Re: The built in tables are there. You need to run the pre-existing scripts to create the tables in the desired schema. | |
Re: you need to format the time value properly before processing. everything is possible ,but nothing happens automatically. You need to code that. | |
Re: Change your code to start the application from SUB_MAIN in stead of ONLOAD event. | |
Re: I think you need to use any of the grid controls. select any grid from [B]project---> Components[/B] You need to play with some of the properties of the control. | |
Re: what is the pass word that you have set for sys/ system users ? did you unlock the scott user ? did you set any password for scott user ? if you have answer for the above questions, you have the solution to your problem else no one on this … | |
Re: It is really difficult to understand why ORA-01841 is be raised in your case , without knowing your table structure. |
The End.