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 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 use a stack to store indices of an array,so I use
Hey all -- this question is specifically about a gender validation, but I'm interested
I have an array with close to 1000 instances of a class, each of
To make a long story short... I'm building a web app in which the
I am trying to sort an array of prices from low to high. I
(Apologies in advance if this question is short on details, I'll watch the comments
Here is the sample program I am working on to read a file with
I'm a little stuck on what I'm pretty sure is an easy solution. Here's
Note: Configuration are being kept in a PHP file, config.php . I've seen this
Say I have a Song object like public Song(){ String artist, title; StringBuilder lyrics;

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.