The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
43 views

Oracle saving arabic numbers as “??”

Working on Winform based app connecting Oracle via OleDbDatareader, when I save any data having arabic number, for instance: اب۸۴۴ it saves it as اب??? I am using varchar type. It is weird it save ...
0
votes
0answers
20 views

OleDdDataReader can't read a particular string “F1”

I have inherited an application written in C# which reads a CSV file and stores the data in database. I've noticed that when a value in the CSV file is this particular string "F1" the application ...
0
votes
1answer
38 views

OleDbDataReader gives Unsupported Data Type Error

I am using Oracle Db and calling a Simple Select Query but Oracle is throwing a weird error message: A first chance exception of type 'System.Data.OleDb.OleDbException' occurred in ...
0
votes
2answers
89 views

Combo Box Items are not Visible

I have written the following code to view my score in ComboBox, i write this all in populate() method , and i call it form load, but it show empty combo box. Kindly tell me whats wrong it this code. I ...
0
votes
1answer
152 views

C# OleDb Oracle function and Table Types

i'm trying to invoke an Oracle function that returns a type encapsulated in a Table Type Object create or replace type Z_TBL_STRUCTURE_CODE AS OBJECT ( PROJ_ID varchar2(50 BYTE) ); Type table ...
0
votes
0answers
27 views

How to resolved. Timeout issue cause of multiple reader

I have problem with OleDbDataReader Timeout. FYI, I have multiple OleDbDataReader in one try/catch. After reading, it will insert into same database. Refer to my sample code here: Dim ReadTerima, ...
0
votes
1answer
58 views

Exception upon retrieving DateTime field

I am retrieving DateTime data from an access data base and want to assign it to an object as a string value. OleDbDataReader dbRead = cmd.ExecuteReader(); while (dbRead.Read()) { ...
0
votes
0answers
147 views

Retrieving Large Table from Access using OleDbDataReader (Slow)

I'm currently migrating an old application that was built using VB6. The application is mainly used to process Data from an Access Database. I was using the DAO library to do all the work. I'm now ...
1
vote
4answers
95 views

simplify OleDbDataReader code

I made a program, that reads data in the database I use the OleDbDataReader but the problem is I have different tables, this codes works perfectly but I found it a little bit "hardcoded" or recursive ...
0
votes
2answers
61 views

Splitting the key values in a dictionary

I have several keys (which represents subjects) in a dictionary and with that I associate several values(codes) per key. CODE SUBJECT 7DIM-039 Communication 7DIM-040 Communication ...
0
votes
3answers
66 views

adding List values to a dictionary

I am trying to populate a dictionary of which the subject value which is unique have various Code values that should be matched with it. CODE SUBJECT 7DIM-062 Recruitment and Selection 7DIM-063 ...
-1
votes
4answers
136 views

Displaying bool value as Yes or No

I am quering a database and assigning the values to an object which I serialize and display in a report. Thing is the bool variables are displayed in the report as true or false. How can get the ...
0
votes
1answer
32 views

Exclusing Items to be added to a List

I query a two tables from a database and add unique values to a generic list. If there is a value that I do not want to add to the list, how can I prevent the item from being added? using ...
0
votes
0answers
183 views

How to use OleDbDataReader to read a value when a Checkbox is clicked in Asp.net

Here is my function having the DataReader check a column in my Database. The Checkbox is in a GridView Row and the function does not return any values from the reader. What is wrong with my function ...
0
votes
0answers
37 views

OleDbDataReader lock file

I am using a oledbDataReader in C# to read data from a FoxPro database. What I would like to know is, does this lock the table that it is currently reading from? If so, how can I read from the table ...
1
vote
1answer
226 views

Converting Byte[] to String - Interbase to C# - InvalidCastException

I'm using OleDbDataReader rdr to read a "Comments" field in BLOB form (sub_type 1 segment size 80) into a string from an Interbase DB, and I keep getting exceptions. Any suggestions? Attempt #1 ...
0
votes
1answer
1k views

Call stored procedure and cursor parameter with OleDb

I'm developing an application in C# that connects to an Oracle 10g database. I'm using Oledb like this: OleDbConnection conn = ConnectionUtil.CreateConexion(); OleDbCommand cmd = new ...
0
votes
1answer
262 views

DataReader does not see data in Excel cell if previous cell in the column are empty

I have a weird problem with reading .xls file using OleDbDataReader. Basically, it does not see a data in the cell, if the previous cells in the column are empty. If I move the row with the data ...
-2
votes
1answer
139 views

oledbdatareader not accessible outside the function in C#.net code

I have the below code which used to work until i recently updated the funtion to return true or false.But suddenly the object objReader stopped being accessible outside the function.I have declared in ...
0
votes
0answers
51 views

Result of OleDbDataReader to Excel using VB.Net [duplicate]

Possible Duplicate: How dump database table to excel sheet? In VB.Net, What's a good way to write the result of a database query, obtained via OleDbDataReader, to an Excel tab? Oracle ...
0
votes
1answer
763 views

oledbdatareader no data exists for the row column

when i execute my code it gives me this error " no data exists for the row column" can anyone please help me,,,am using access database here is my code: private void UpdateStudent_Load(object ...
1
vote
2answers
165 views

How can I use a single SQL string to create a data-set from multiple tables in C#?

I'm new to C#, and I'm kinda clueless about how to use a single sql-string to retrieve data from multiple tables (3 of them, actually). basically there are 2 master-files: Task_Information, ...
0
votes
3answers
640 views

VB.NET OleDbDataReader

i am using the OleDbDataReader to read a column from an Access database and i want to be able to use the same reader to read the column again in the same function because i am doing some comparison ...
0
votes
1answer
505 views

OleDbDataReader does not see data in the cell(.xlsx)

Have a really weird problem with reading xlsx file(I'm using OleDbDataReader). I have a column there that consist of the following data: 50595855 59528522 C_213154 23141411 The problem is ...
0
votes
2answers
239 views

Index was outside the bounds of the array. c# OleDbDataReader

Could someone please tell me what I am doing wrong here. I have compiled my code and I get it to read the ROWS and return the count. However, I get an error when saying the "Index was outside the ...
-3
votes
2answers
429 views

Use of unassigned local variable c# using OleDbDataReader

I am having a problem and have been banging my head aginst a wall... I keep getting a "Use of unassigned local variable" when I call "dbReader = dbCommand.ExecuteReader();" it says the Use of ...
0
votes
2answers
129 views

reading attributes with special names from MS ACCESS in OleDbDataReader

I have som problems with reading from accdb database when it has fieldnames with characters like "-", "%", "/" or if the fieldname is "Level". When I have something like this: string mySelectQuery = ...
0
votes
1answer
87 views

Is it safe to access OleDBDataReader after Command is closed

In java, you cannot access the ResultSet once the Statement is closed, although many times you get a small amount of fetched data making it appear to be open. But in general it is against the API ...
0
votes
1answer
2k views

C# OleDbDataReader

How to change this: public void Charge(string bankaccountnumber, decimal moneyamount) { foreach (Bankaccount bankaccountInProcess in bankaccount) { if ...
0
votes
1answer
421 views

C# read excel cannot get the value

I can read all of the value except 'one'. This is my code: OleDbConnection oledb_con = new OleDbConnection(strCon); oledb_con.Open(); OleDbCommand oledb_com = new OleDbCommand("SELECT * FROM ...
2
votes
1answer
280 views

Oledb data reader reading the deleted rows in an excel document

I'm using the OLEDB Connection to reading an excel document, that document has data up to 100 rows. but when i delete 5 rows then try to read the document again, that OLEDB reader reading up to 100 ...
1
vote
1answer
116 views

Reading users from Access into a list returns only one user

I'm working on a WPF App in C# with VS 2010 SP1. I've looked at quite a few examples on here and elsewhere around the web, and my code seems correct, but when I attempt to read rows from an Access DB ...
0
votes
1answer
375 views

Reading excel file with JET OleDB C# ignoring first blank column

I have an app that's reading in excel data using JET/ACE OleDB in C#. I'm using column numbers stored in the database to read in the data from these sheeets. Everything work fine, except for one ...
0
votes
1answer
539 views

OleDbDataReader to ArrayList in C#

How to iterate through OleDbDataReader and put its elements into ArrayList? Here is my code: // ... ArrayList list = new ArrayList(); while(myReader.Read()) { foreach(string s in myReader) // ...
2
votes
2answers
129 views

Sequence is not consecutive

From my previous question I have solved how to display information from MS Access DB file. The problem is that the sequence number is messing up after I have deleted some entries which I used as ...
0
votes
1answer
1k views

OleDbDataReader.GetString Exception - Specified cast is not valid

When my C# (.NET 3.5) application attempts to access a MS Access 2007 database the OleDbReader.GetString() method is throwing an exception: Specified cast is not valid. What am I doing wrong? ...
0
votes
1answer
370 views

Unknown error reading Excel file with blank rows using WHERE clause

So clients upload Excel files to us and we have a windows service that periodically grabs new files and bulk-loads the contents to our SQL server like so: string excelConnectionString = ...
1
vote
4answers
606 views

How dump database table to excel sheet?

I am getting data from my database and I want to have that data as a table in excel file. So, I have written the following : Dim sheetToPopulate As Excel.Worksheet = getSheet() Dim reader As ...
0
votes
1answer
1k views

Using OleDBDataReader to read Excel not retrieving all of a header column cells content

I have an Excel sheet that I am using to populate data in a Database. It seems as though there is only a certain number of characters that the OleDBDataReader actually reads in from a column heading ...
1
vote
3answers
1k views

Converting null string to date

I have searched high and low to no avail, and this is last step before completing my project so please help! Thanks in advance! The user will select an entry in a gridview, which then redirects ...
0
votes
2answers
433 views

Preserving MS Access Row Order when using DataAdapter.Fill in C#

Here's a tricky one... I noticed in a query for my code that when I used the .NET DataAdapter.Fill method as shown below to query an Access database, the order of the records was not the "natural" ...
5
votes
3answers
5k views

Get retrived records count from OleDbDataReader in C#?

I want to get the retrived records count from the OleDbDataReader in C# ? strQuery = "SELECT * FROM Table_Name" ; dbCommand = new OleDbCommand(strQuery, dbConnection); ...
0
votes
1answer
413 views

How to check if a field value is a certain charachter length in a oledb sql select command?

I am reading from an access database using a C# OleDB connection. I don't want any results which are less than three characters in length. I am getting an "Invalid pattern string" error with my ...
2
votes
2answers
2k views

When using OleDBDataReader to select a memo field from an Access database it only returns part of the string. How can I get the whole string?

This is my code: OleDbConnection connection = new OleDbConnection( "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=c:\\Offline.accdb;Persist Security Info=False"); connection.Open(); OleDbCommand ...
1
vote
1answer
904 views

add row to datagridview while OleDbDataReader.read()

I use C# and WindowsForms. I want to insert a record to database and then add too my gridview I test the codebellow but it dosent work. //some codes here OleDbDataReader dr = ...
0
votes
3answers
3k views

converting resultset from OleDbDataReader into list

Consider a Winforms app connecting to a SQL Server 2008 database and running a SQL SELECT statement: string myConnectionString = "Provider=SQLOLEDB;Data Source=hermes;Initial ...
0
votes
1answer
807 views

Specified cast is not valid

SqlDataReader reader; string r="C:\\Users\\Shivam\\Documents\\"; if ((FileUpload1.PostedFile != null)&&(FileUpload1.PostedFile.ContentLength > 0)) ...
3
votes
2answers
2k views

Is there a way to force Microsoft.Jet.OLEDB to get date Columns in MM/DD/YYYY format from Excel?

I am having a problem with reading DateColumns from an excel sheet. Sometimes people use different date Formats and this brings a problem. Let's say when I expect 07/26/2010 from an Excel column I ...
0
votes
2answers
1k views

retrieve value using OleDbDataReader

Let us think my sql query is select customerDetials.custid,TestTable.col1 from CustomerDetails INNER JOIN TestTable on CustomerDetails.custid=TestTables.custid where CustomerDetails.custid>0 ...
0
votes
1answer
1k views

Read columns names issue with reader.GetName and OLEDB Excel provider

I have an issue to retrieve the columns names in an Excel sheet. I have an Excel sheet with only 3 cells in the first row with these 3 values: in A1: A in B1: B in C1: A.B.C When I try to execute ...

1 2