ORA-01008: 모든 변수가 바인딩되지 않았습니다(매개변수화된 쿼리가 있는 테이블 어댑터에서) (ORA-01008: not all variables bound (in table adapter with parameterized query))


문제 설명

ORA‑01008: 모든 변수가 바인딩되지 않았습니다(매개변수화된 쿼리가 있는 테이블 어댑터에서) (ORA‑01008: not all variables bound (in table adapter with parameterized query))

환경:

  • Visual Studio 2010(.NET Framework 4)

  • ASP.NET 웹 애플리케이션

  • Oracle Database

  • System.Data.OracleClient 사용

    사용자가 입력할 수 있는 웹 양식이 있습니다. 또는 내 쿼리의 각 매개변수에 해당하는 텍스트 상자에 데이터가 없습니다. 사용자가 데이터를 입력하지 않으면 텍스트 상자에 "0"이 표시됩니다. value.

여기 내 쿼리가 있습니다.

SELECT "CardNo" , "Name"
FROM CSC.CommercialCardList
WHERE("CardNo"=:CardNo or :CardNo=0) and ("Name"=:Name or :Name=0)

MYDATABASE.xsd 패널의 tableadaptor에서 쿼리를 마우스 오른쪽 버튼으로 클릭하고 ' 데이터 미리보기' 및 매개변수 값을 "0"으로 채웁니다. 오류가 발생합니다("ORA‑01008: 모든 변수가 바인딩되지 않음")

<

참조 솔루션

방법 1:

You need to bind 4 variables as part of your code.

2 for "CardNo"=:CardNo or :CardNo=0

2 for "Name"=:Name or :Name=0

방법 2:

You have to set command BindByName As true :

1‑ In OracleCommand as the below

 OracleCommand cmd = new OracleCommand();

2‑ In Tableadaptor as the below and call the SetBindByName with ture value

namespace MyTableAdapters
{
    public partial class MyTabTableAdapter
    {
        public bool SetBindByName
        {
            set
            {
                this.Adapter.InsertCommand.BindByName = value;
                this.Adapter.UpdateCommand.BindByName = value;
                this.Adapter.DeleteCommand.BindByName = value;
                foreach (Oracle.DataAccess.Client.OracleCommand cmd in this.CommandCollection)
                {
                    cmd.BindByName = value;
                }
            }
        }
    }
}

(by elh4m vDurga Viswanath GadirajuOsama AbuSitta)

참조 문서

  1. ORA‑01008: not all variables bound (in table adapter with parameterized query) (CC BY‑SA 2.5/3.0/4.0)

#oracle #tableadapter #datatable #parameters #visual-studio






관련 질문

Oracle SQL은 요일을 현재 날짜로 정렬합니다. (Oracle sql sort week days by current day)

3개의 변수가 있는 저장 프로시저 작성을 위한 plSQL 구문 (plSQL Syntax For Writing Stored Procedure w/ 3 Variables)

조건에 따라 SQL 쿼리의 UPDATE 문에서 값을 설정하기 위해 동적 열 이름을 설정하는 방법은 무엇입니까? (How to set dynamic column name to set value in UPDATE statement of SQL Query on the basis of condition?)

현재 회계 연도부터 sysdate까지 (Current Financial Year to sysdate)

카운트 최대 시퀀스 행 (Count Max Sequence row)

ORA-01008: 모든 변수가 바인딩되지 않았습니다(매개변수화된 쿼리가 있는 테이블 어댑터에서) (ORA-01008: not all variables bound (in table adapter with parameterized query))

ORA-00979: Oracle에 대한 GROUP BY 표현식이 아니지만 절 차이의 컨텍스트에서 MySQL에 대해서는 유효하지 않습니다. (ORA-00979: not a GROUP BY expression for Oracle but not valid for MySQL in context of clause difference)

#SQL #QUERY #ROWNUM #ORACLE (#SQL #QUERY #ROWNUM #ORACLE)

Oracle을 위한 IS숫자 대안 (ISNumeric Alternatives for Oracle)

다른 열의 열에서 누락된 문자 목록을 찾는 방법 (How to find list of missing characters in a column from another column)

18C 업그레이드의 일부로 OWA_UTIL.who_called_me에서 변경된 사항은 무엇입니까? (What are the changes done in OWA_UTIL.who_called_me as part of 18C upgrade?)

일부 값이 null인 경우 Oracle에서 날짜를 비교하시겠습니까? (Compare date in Oracle when some value is null?)







코멘트