- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
command = new System.Data.SqlClient.SqlCommand();
command.Connection = connection;
command.CommandText = "select data from filestorage where id=@id;";
command.Parameters.AddWithValue("@id", fileId);
command.CommandType = CommandType.Text;
byte[] data = (byte[])command.ExecuteScalar();
command.CommandText = "select filename from filestorage where id=@id;";
string fName = (string)command.ExecuteScalar();
command.CommandText = "select sizebytes from filestorage where id=@id;";
long lngFileSize = (int)command.ExecuteScalar();
command.CommandText = "select foldername from filestorage where id=@id;";
string store= command.ExecuteScalar().ToString();
nikita2206 11.09.2010 19:30 # +5
istem 11.09.2010 22:38 # −2
> такого на php ещё никто не делал
Lure Of Chaos 12.09.2010 01:20 # 0
А кто пользуется наработками уровня абстракции БД, тому писать подобное не придет в голову
Анонимус 12.09.2010 03:23 # +5
Хотя возможно он просто не знает других методов, кроме ExecuteScalar.
akai_mirror 12.09.2010 04:03 # 0
Мистер Хэнки 15.09.2010 21:07 # +2
Lure Of Chaos 16.09.2010 17:31 # 0