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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jeffmoore

  1. jeffmoore

    Convert function and odbc vs sql

    Thanks ... the problem here is that i'm pulling data in from a text file ... adding some data to to it and pushing it out to a sql server.
  2. jeffmoore

    Convert function and odbc vs sql

    The problem here is that the convert function below gives me an error in the ODBC data string. The SQL string works fine!!! Here is the error message I get at execution on console: error: ERROR [42000] [Microsoft][ODBC Text Driver] Undefined function 'convert' in expression...
  3. jeffmoore

    need to get time as time not date...

    okay but how do i put them into the dataset individualy??
  4. jeffmoore

    need to get time as time not date...

    Here is what I have: Dim connect As New SqlConnection("initial catalog=rathmisc;data source=server;user id=sysadm;password=sysadm") Dim MyDataAdaptor As New System.Data.sqlclient.SqlDataAdapter("select * from tbl_data_laser_1", connect) Try connect.Open()...
  5. jeffmoore

    datagrid error

    woo hooo ..... this works!!!! Dim connect As New SqlConnection("initial catalog=rathmisc;data source=server;user id=sysadm;password=sysadm") Dim MyDataAdaptor As New System.Data.sqlclient.SqlDataAdapter("select * from tbl_data_laser_1", connect) Try...
  6. jeffmoore

    'System.Data.SqlClient.SqlException' occurred

    okay the #$@$%^ connection string wrong ... I didn't have the data source= myserver in there.... thanks all .... boy this ain't easy....
  7. jeffmoore

    need to get time as time not date...

    that was all greek to me ..... i'm a struggling newbie ;)
  8. jeffmoore

    datagrid error

    okay I'm getting further.... now I get this!!!! error: Complex DataBinding accepts as a data source either an IList or an IListSource
  9. jeffmoore

    'System.Data.SqlClient.SqlException' occurred

    moved it up one line .... same error
  10. jeffmoore

    'System.Data.SqlClient.SqlException' occurred

    I put the stmt oSQLConn.Open() right before the MyAdaptor.fill(ds) line ..... Same error.....
  11. jeffmoore

    'System.Data.SqlClient.SqlException' occurred

    Still stuck here .... the code runs till the last line then hang for about 10-15 seconds then returns the error shown below the code sample. This is basically straight out of and example.... Dim oSQLConn As SqlConnection = New SqlConnection oSQLConn.ConnectionString = "Initial...
  12. jeffmoore

    need a good book on vb.net

    thanks ... I'll be at the library tonight!!!
  13. jeffmoore

    how do I connect to a sql db

    that works thanks
  14. jeffmoore

    datagrid error

    just tried that ... same error : An unhandled exception of type 'System.Data.SqlClient.SqlException' occurred in system.data.dll

Part and Inventory Search

Back
Top