Top "Transient" questions

generally in ORM and OOP , a transient object is an object that has not been saved to DB yet

Any real time example for transient variable in java

From the question Why does Java have transient fields?. I am able to understand the transient. But, not able to …

java serializable transient
What does @Transient annotation mean for methods?

So I have learned that the transient keyword in Java means that an entity does not persist, and that the @…

jakarta-ee jpa annotations transient
When to use SQLITE_TRANSIENT vs SQLITE_STATIC?

I would like to create/update text columns in sqlite3. When i retrieve rows after the create/update, the text …

static sqlite transient
Custom Core Data SectionNameKeyPath

I am new at core data and am trying to figure out how to create a custom sectionNameKeyPath in my …

ios core-data transient sections
What is the use of transient variables?

Possible Duplicate: Why does Java have transient variables? The transient keyword will be used to prevent serialization of a particular …

java serialization transient
Android Room: @Ignore vs Transient

Are those two interchangable in context of Room database entity, or, if not, what are the differences between them?

android serialization android-room transient
Java: Static transient fields

I just found out in Java you can declare a field 'static transient' - the compiler doesn't complain. This doesn't …

java serialization static field transient
Can properties mapped in hbm.xml be transient?

Suppose I have a User entity like this: class User { private String login; transient private String hashedPassword; } I don't want …

java hibernate serialization transient
Need some help understanding transient properties in Core Data

I read the documentation on transient properties but I can't really understand their purpose. Can someone tell me the difference …

iphone core-data transient
Can transient keywords mark a method?

In a java class java.util.Locale, I find that the keyword transient marked a method. public final class Locale …

java transient