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 Chris Miller 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: *

  1. csbrmg

    problem using tsqlstoredproc with dbexpress

    I want to execute a stored procedure from my MS SQL server database base but when trying to execute the code below the error message "List index out of bounds (0)" appears.The procedure i executed perfectly when i remove its parameters and hard code the input as following code...
  2. csbrmg

    problem using tsqlstoredproc

    I have a problem executing a stored procedure when using tsqlstoredproc when using the code tem.StoredProcName :='insertnew'; with tem.Params do begin CreateParam(ftInteger, '@Tempid', ptInput); ParamByName('@Tempid').AsInteger := TID...
  3. csbrmg

    Problem Calculating the number of records in query results

    I seem to have a problem traversing a dataset of a TSQLquery(DBEXpress) datatype because i am using sql server as my database the recordcount property does not work does anyone know of any other way to deterimine the number of records in a query when using sql server
  4. csbrmg

    I am creating a database applicatio

    I am creating a database application with a sql server backend,but i seem to have a problem extracting an integer Field(size=8) from the database.when using the code var q:Tsqlquery; TID:Integer; begin ....... TID:=(q.Fields[0].asinteger); ... end; The code...
  5. csbrmg

    MySql database connection

    The Problem is that i am not sure exactly how to customise the params settings using either MS SQL Server or My SQL
  6. csbrmg

    MySql database connection

    I am not quite sure how to configure the sqlconnection component of dbexpress ,particularly how to select the database in the params property.
  7. csbrmg

    memory mapping

    I seem have a few problems returning a reference to a shared memory location and keep on getting a run time at the specified location below... this is the code class function TActivityLogger.NewInstance: TObject; var llInit:Boolean; temp:LoggerPointer; begin...
  8. csbrmg

    I seem have a problem returning a r

    I seem have a problem returning a reference to a shared memory location and keep on getting a run time at the specified location below... this is the code class function TActivityLogger.NewInstance: TObject; var llInit:Boolean; temp:LoggerPointer; begin...
  9. csbrmg

    Memory Mapping

    The major problem that i have with file mapping is that once the filemapping ad the map view is created how would a create an instance of a specific class(MYLOGGER) within the specified memory location.

Part and Inventory Search

Back
Top