Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...



Database Errors Interview Questions
Questions Answers Views Company eMail

ORA-22627: tc [string] must be that of object/varray/nested table

1 2959

ORA-22628: OCIAnyData already constructed

1 2977

ORA-22629: OCIAnyData is null

1 3329

ORA-22630: attribute [string] is null or it is not well-formed

1 3021

ORA-22631: attribute [string] is is not well-formed or does not match the type

1 4597

ORA-22632: AnyDataSet parameter is not valid for the current operation

1 3100

ORA-22633: Error freeing AnyDataSet

1 3072

ORA-22634: Error adding new instance to AnyDataSet

1 3178

ORA-22800: invalid user-defined type

1 8458

ORA-22801: invalid object row variable

1 2742

ORA-22803: object type contains zero attributes

1 5822

ORA-22804: remote operations not permitted on object tables or user-defined type columns

1 5772

ORA-22805: cannot insert NULL object into object tables or nested tables

1 4068

ORA-22806: not an object or REF

1 11029

ORA-22807: cannot resolve to a scalar type or a collection type

1 4357


Un-Answered Questions { Database Errors }

hi. i m Anil patel when reconcile 57f4 chalan(subcontraction with out excise)i m facing error like short by material 220 kg. even i have migo all material.

2571


How will you Handle Error in SQL SERVER 2008?

2440


when i ran any workflow or session, getting below error: seesion task instance[s_xxx]: Execution terminated unexpecterdly

2297


mount: mount to NFS server failed: System Error: Connection timed out

3703


ORA-26028: index string.string initially in unusable state

3910


why we are using shift key in unix shell script

3227


what is new g/l functionality

2673


IMP-00060: Warning: Skipping table "string"."string" because object type "string"."string" does not exist or has different identifier

3223


ORA-26084: direct path context already finished

1994


hp asking for replication floppy to do reinstall 25254 server assistant

2960


ORA-26076: cannot set or reset value after direct path structure is allocated

2030


NZE-28890: Entrust Login Failed

1918


ORA-16626: failed to enable specified object

2272


RMAN-05017: no copy of datafile number found to recover

2465


I have written the code as below. here problem is that dt remain null. how to solve thst please tell me. public partial class Form1 : Form { private DataTable DTable; private DataRow drow; public Form1() { InitializeComponent(); } private OleDbConnection getConnection() { OleDbConnection con=new OleDbConnection (@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\Administrator\My Documents\Visual Studio 2008\Projects\winApp for Student\winApp for Student\App_Data\SchooMgnSystem.mdb;Persist Security Info=True"); return con; } private void button1_Click(object sender, EventArgs e) { InsertData(); } private void InsertData() { if (DTable==null) { DTable = new DataTable(); DTable.Columns.Add("StudID", typeof(string)); DTable.Columns.Add("StudName", typeof (string)); DTable.Columns.Add("Address", typeof(string)); drow = DTable.NewRow(); drow[0] = txtStudID.Text; drow[1] = txtSTudName.Text; drow[2] = txtAddress.Text; DTable.Rows.Add(drow); grdStudent.DataSource = DTable; } else { drow = DTable.NewRow(); drow[0] = txtStudID.Text; drow[1] = txtSTudName.Text; drow[2] = txtAddress.Text; DTable.Rows.Add(drow); grdStudent.DataSource = DTable; } } private void button2_Click(object sender, EventArgs e) { string cmdstr; OleDbCommand cmd; OleDbConnection con = getConnection(); foreach (DataRow Drow in DTable.Rows) { cmdstr = "Insert into Student values('" + drow[0].ToString() + "','" + drow[1].ToString() + "','"+drow [2].ToString()+"')"; cmd = new OleDbCommand(cmdstr,con); try { con.Open(); cmd.ExecuteNonQuery(); } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { con.Close(); } } }

2706