Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ProgrammingB52
  • Order by date
  1. ProgrammingB52

    switching from design to Form view details section dissappears

    I figured it out, what happened was there was an incorrect table relationship, when I added the table to the fieldList, the page dissappeared because the relationship was wrong.
  2. ProgrammingB52

    switching from design to Form view details section dissappears

    The underlying record source does not contain any data because it is a blank form and the data entered into my textboxes goes into the database, not the reverse--the records from the database which are currently blank are not to show up on the form. What I am doing is dragging fields from the...
  3. ProgrammingB52

    switching from design to Form view details section dissappears

    Hi I am working in design view, bounding textboxes and then when I switch to form view the whole page in the details pane is gone. Only the header shows,,,,help please....
  4. ProgrammingB52

    How to bind a control to a tables value in designView -#Name?error

    I managed to add an updated fieldlist to the form from the properties window. Then I can drag and drop the properties over. That makes them appear in the record source.
  5. ProgrammingB52

    How to bind a control to a tables value in designView -#Name?error

    Well I got that far but I am setting the control source wrong. I am setting it to =tableName!FieldName That doesn't work.
  6. ProgrammingB52

    How to bind a control to a tables value in designView -#Name?error

    Hi I just started out in design view with a form. I get a #Name? error on my form. What I want to do is have a text box be blank and when someone enters the data into the textbox I want it to be stored in a table. How do I bind the control to a table?
  7. ProgrammingB52

    TSQL

    Thanks so very much, The update table sql worked. I made it more complicated than it really was.
  8. ProgrammingB52

    TSQL

    The output is:Cannot insert the value NULL into column 'stdID', table 'clarkOnline.dbo.Student'; column does not allow nulls. INSERT fails. The statement has been terminated. (9 row(s) affected) ---------------------------------------------------------- When I write this: select...
  9. ProgrammingB52

    TSQL

    I have a table Student with fields stdID,fName,lName,email and username. I have another table studentType with a field degType for degreeType. The username field is blank and I am trying to write in TSQL that the username field be the (degreeType initial + _ + fName + lName). For example for a...
  10. ProgrammingB52

    Where can I find PLSQL samples?

    Does anyone have a link for any PLSQL samples that I can run?
  11. ProgrammingB52

    Can't connect to driver sun.jdbc.odbc.JdbcOdbcDriver

    Got it working. What it was was in the control panel for ODBC datasources the sql server driver had to be set to windows authentication mode.
  12. ProgrammingB52

    Can't connect to driver sun.jdbc.odbc.JdbcOdbcDriver

    Below is my code and I am getting a connection unsuccessful error. I am trying to use a sql server database. I didn't do anything in the control panel odbc datasources. try { String url = "jdbc:odbc:employeeExpense"; Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); dbConn...
  13. ProgrammingB52

    How do I view which databases are available

    Using select username from dba_users I get the error message ' table or view does not exist' Does that mean that there are no databases that I am privelaged to?
  14. ProgrammingB52

    How do I view which databases are available

    In MySQL it is show databases; What is the command to view all of the databases available?
  15. ProgrammingB52

    Stored Procedure to declare variables

    How do I write a stored procedure to declare the following variables @Phone and @CustomerID to equal the Customer's table's fields Customer.phone and Customer.customerID?
  16. ProgrammingB52

    Converting text files to xml

    I have about a hundred text files,each text file contains information about a person.I have to have these in xml.Is it possible to create an xml schema based on the text files and then import all of these text files to xml with element,field names defined from the schema. When I import them now...
  17. ProgrammingB52

    Creating a stored Procedure for Windows Application

    In my C# application I have an update method that is not updating the database. private void btnUpdate_Click(object sender, System.EventArgs e){ oleDbDataAdapter1.UpdateCommand.Parameters.Add("@Phone", contactsPhone); oleDbDataAdapter1.UpdateCommand.Parameters.Add("@CustomerID"...
  18. ProgrammingB52

    INSERT statement conflicted with COLUMN FOREIGN KEY

    What happened was the table had a foreign key to itself so I deleted it and it worked. Thanks
  19. ProgrammingB52

    INSERT statement conflicted with COLUMN FOREIGN KEY

    I am trying to insert values in a table where there is a foreign key to another table. I can't insert data into either of these tables and get the same errror.... INSERT statement conflicted with COLUMN FOREIGN KEY SAME TABLE constraint 'FK_OrgUnit_OrgUnit'. The conflict occurred in database...
  20. ProgrammingB52

    How to import Long Script Files

    I have 2 long script files the first starts with: IF EXISTS (SELECT name FROM master.dbo.sysdatabases WHERE name = N'empExpense') DROP DATABASE [empExpense] GO CREATE DATABASE [empExpense] ON (NAME = N'empExpense_Data', FILENAME = N'C:\Program Files\Microsoft SQL...

Part and Inventory Search

Back
Top