Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7730135
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T06:08:50+00:00 2026-06-01T06:08:50+00:00

I have an object type with no-args constructor, but when I specify it as

  • 0

I have an object type with no-args constructor, but when I specify it as default value for a column of that type, I get ORA-00904: invalid identifier error.

Example:

CREATE OR REPLACE TYPE test_t AS OBJECT
(
  val      NUMBER(10),
  CONSTRUCTOR FUNCTION test_t return self as result
)

CREATE OR REPLACE TYPE BODY test_t AS 
  CONSTRUCTOR FUNCTION test_t RETURN SELF AS RESULT IS
  BEGIN
    val := 1;
    RETURN;
  END;
END;

CREATE TABLE test_table (
    test_attr test_t DEFAULT new test_t()
)

Error: ORA-00904: "INKA"."TEST_T"."TEST_T": invalid identifier

If I replace DEFAULT with e.g. test_t(1), it works, but that sort of breaks the OO encapsulation paradigm, I want all fields of same type to have same default “default values” (hope you know what I mean 🙂

Am I missing something here, or is this normal and it is not possible to use non-default constructors like this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T06:08:52+00:00Added an answer on June 1, 2026 at 6:08 am

    Looks like this is not possible.

    One workaround would be to use a trigger:

    CREATE OR REPLACE TRIGGER test_trigger
      BEFORE INSERT OR UPDATE
    ON test_table
      FOR EACH ROW
    WHEN ( new.test_attr IS NULL )
    BEGIN
      :new.test_attr := NEW test_t();
    END test_trigger;
    /
    

    It does not completely ignore non-default constructors by the way, overriding the default constructor

    CONSTRUCTOR FUNCTION test_t(in_val NUMBER)
    RETURN SELF AS RESULT
    

    leads to an exception when trying to define the table with DEFAULT NEW test_t(1):

    ORA-06553: PLS-307: too many declarations of ‘TEST_T’ match this call

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an object of type FSharpOption, but I don't know it's depth. It
I have an object of type Hash that I want to loop over via
I have a Vector of Object[] type that stores my data. How to print
I have some code that performs a deep copy using Object.clone, but I'm trying
I have object A which in turn has a property of type Object B
If you know an object type, and you have the object's handle (hwnd), is
I have 2 collections of objects. the objects have an object-type 'key' property (I
I have a object of type ICollection<string> . What is the best way to
I have an object of type IMAGE which holds image. I wanted to display
I have an object of type list from which I wish to use to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.