Multi column list box in forms 11g - oracleforms

Please have a look at attached file and advise if similar features are available in oracle Form 11g. I tried everything in oracle form 11g but fail to work out. Is it possible to use similar windows features to achieve the same result and how? Many thanks in advance.
enter image description here

Multi column list box is not possible, you can only concatenate your data to show it as one column.
In forms there exists LOV for this type of data.
So I suggest you use this.
If this is not ok for you the only option you got is to use Java pluggable components ( java bean ) to make it yourself.

Related

SSMA console for Access: load only certain objects?

All,
I am using the SSMA console to migrate certain objects from an Access DB to SQL Server.
By default, the console LOADS all objects, but in fact I do not require all of them to be loaded, nor do they need to be converted and migrated.
I was wondering if it's possible to load only certain objects from a database instead of the entire database? If so, how can this be achieved?
I cannot find it in the documentation :(
https://msdn.microsoft.com/en-us/library/hh313064%28v=sql.110%29.aspx
Many thanks.
Simply expand the metadata explorer, and expand the database down to the table level. As the follow screen shot shows, you can select any table you choose.
Thus save the project, and use that as the project name when you up-size. I not looked at command line options, but specifying the project in question likly is an opiton if you not using the above GUI. So use the GUI to setup the project and select the tables you wish. You then use this project for the up-size.

Classic ASP with Oracle Database

I am new to Classic ASP. Since last week I am working with this technology. Could you please help me on the following questions with simple examples.
Questions:
Fetching some data from oracle database and displaying it in various textbox controls and labels.
View and updating the data.
How to fecth the database table and display it in a grid or any control.
I have done some R&D but am unable to get the exact flow of it. It's totally insane so help me on this. Please suggest me some websites or links to get more into it.
Thanks for your time.
-Padmanaban
You have to use ADO
Here some tutorials :
http://www.w3schools.com/ado/ado_examples.asp
Specific to oracle :
http://support.microsoft.com/kb/255043

Interactive but basic graphics for mysql data

On the web there are many libaries and programs that alow for basic display of data yet there doesn't seem to be one that is able to quickly generate basic x/y graphs based on simple drag/drop input from the mysql database.
Is there a method available opensource/free/paid to get a quick and (if needed) very dirty view of data in a graphical way?
Preferable it should plug in to Workbench or be a stand alone (web) app.
If you are using Java ,you can refer to http://www.jfree.org/jfreechart/ ,if you are using Python , you can refer to http://matplotlib.org/ .

Trying to create link between AutoCAD and mySQL to auto-complete other attributes

I am sure this is a tall order but I have to ask. How would I go about creating link between AutoCAD 2012 and mySQL to when defining a block attribute in AutoCAD it updates several other attributes based on a cross reference to a mySQL database.
I tried to find another question like this but was unable to do so. If I missed it please link.
If you need any clarification, please let me know.
Thanks in advance.
If you are using Map3D or civil3D you can connect to external databases to do some work.
if you want to use only AutoCAD
I think you may need to create a plugin to do that using .NET C#.
or you can use Excel to fetch attribute to the dwg and make excel update from mySQL database.

How do I make a connection to an MS Access database using Codegear C++ builder (2007)

This seems to be the hardest thing to get help with - there are no books, no useful google results, and borland's own help facilities are far to complicated for me to isolate the answers I need.
I want to make a connection to an already existing microsoft access database using builder.
I want to be able add/delete/read the records. that's all.
Or failing that. how do I create a simple database/table using builder. It would be ideal if I had an application that could create a table if it didn't already exist, then use that table from that point onwards.
I want to avoid creating DSNs. I want direct access to the database from builder.
If you could point me in the direction of a good online tutorial for this that would be a start. If you could actually provide the help yourself (ie tell me how to do it, rather than show me an article) that would be great and I'd be very greatful.
in portuguese:
http://www.caloni.com.br/blog/archives/banco-de-dados-no-c-builder
see if fits your question
Have you looked at the VCL's ADO components yet? TADOConnection, TADOCommand, etc.