Skip to Main Content

SQL Developer for VS Code

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Plans for CoPilot/AI integration?

Mike KutzFeb 16 2024

Are there plans to incorporate AI (eg CoPilot) for code completion? or is this left to 3rd parties?

I would like to say: “Ok Larry, validate that these selected columns are US dates”

Engine should then look for the most promising Domain for “US date”, using current connection, and find (because of the Annotation):

create domain date_us
  check ( to_date( value default null on conversion error, 'mm/dd/yyyy' ) is not null )
  annotations ( description 'US Date' );

Then adds columns to the end of the select clause using a template similar to:

,domain_check( date_us /* found domain*/, selected_column ) as is_selected_column_valid

This post has been answered by thatJeffSmith-Oracle on Feb 16 2024
Jump to Answer
Comments
Post Details
Added on Feb 16 2024
3 comments
971 views