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!

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 Sep 9 2025
Jump to Answer
Comments
Post Details
Added on Feb 16 2024
19 comments
2,383 views