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

  • SEARCH
  • Home
  • 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 933095
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T20:46:32+00:00 2026-05-15T20:46:32+00:00

I want to store a short array of 64 bytes in Oracle database (a

  • 0

I want to store a short array of 64 bytes in Oracle database (a password hash). I thought char(64 byte) is what I need, but it seems like it doesn’t work. In Microsoft SQL, I use binary and varbinary types. What type do I need to use in Oracle?

Every example I’ve found uses blob to store binary data, but I suppose blob is intended only for large objects, not for fixed size short arrays.

When updating the data, is the code like this appropriate:

byte[] passwordHash = GenerateHash();

using (OracleCommand updateHash = new OracleCommand("update A set passwordHash = :hash where EntryId = :id", oracleConnection))
{
    updateHash.Parameters.Add(":hash", passwordHash);
    updateHash.Parameters.Add(":id", entryId);

    if (updateHash.ExecuteNonQuery() != 1)
    {
        // ...
    }
}

or am I missing something and byte array parameters cannot be added 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-05-15T20:46:32+00:00Added an answer on May 15, 2026 at 8:46 pm

    In addition to blob, Oracle also has the RAW datatype,

    RAW is a variable-length datatype like
    VARCHAR2

    — Oracle 10g Release 2 Datatypes

    RAW can be set up to a max size of 2000 bytes, with LONG RAW having a max size of 2GB.

    However:

    Oracle strongly recommends that you
    convert LONG RAW columns to binary
    LOB (BLOB) columns. LOB columns are
    subject to far fewer restrictions than
    LONG columns.

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

Sidebar

Related Questions

I want to store short arrays in a field. (I realize there are reasons
I want to store several different methods in an array in Ruby. Suppose I
Long story short, I need to sort an array of objects using usort, and
I am a new developer on Android and I want store user data in
I want to store additional information on my users (address, phone). Should I extend
I want to store the distance between different locations in a table. CREATE TABLE
I want to store a number with the following 0.000 which is the best
I want to store events in a web application I am fooling around with
I want to store configuration information about my DLL in an XML file inside
I want to store data in string form to MySQL. I have created the

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.